/* New Page Styles - Simple and Stable - No conflicts with header/home CSS */

/* Page Entry Animations - Safe CSS-only animations (one-time, no loops) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Simple Background - No Animation */
html {
    position: relative;
    min-height: 100vh;
}

body {
    position: relative;
    overflow-x: hidden;
    background: #fbfafd !important;
    min-height: 100vh;
}

#main {
    position: relative;
    z-index: 1;
}

/* Page Content Wrapper */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Page Hero Section */
.page-hero {
    padding: 60px 20px;
    text-align: center;
    background: rgba(248, 250, 252, 0.8);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero {
    animation: fadeIn 0.6s ease-out;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f1724;
    margin: 0 0 10px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-hero p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px 20px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f1724;
    margin: 0 0 10px 0;
}

.section-title h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f1724;
    margin: 0 0 10px 0;
}

.section-title p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Filter Buttons */
.page-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 20px;
    list-style: none;
    margin-left: 0;
    margin-right: 0;
}

.page-filters li {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #64748b;
}

.page-filters li:hover {
    background: #f8fafc;
    border-color: #EF3B45;
}

.page-filters li.filter-active {
    background: #EF3B45;
    border-color: #EF3B45;
    color: #fff;
}

/* Grid Layout - Simple and Stable */
.page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* Page Grid - No animation */
.page-grid.animate-in {
    animation: none;
}

/* Ensure team members in grid don't inherit animations */
.page-grid .team-member {
    animation: none !important;
    opacity: 1 !important;
}

/* Card Styles */
.page-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: block;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger animations for grid items */
.page-grid .page-card:nth-child(1) { animation-delay: 0.1s; }
.page-grid .page-card:nth-child(2) { animation-delay: 0.2s; }
.page-grid .page-card:nth-child(3) { animation-delay: 0.3s; }
.page-grid .page-card:nth-child(4) { animation-delay: 0.4s; }
.page-grid .page-card:nth-child(5) { animation-delay: 0.5s; }
.page-grid .page-card:nth-child(6) { animation-delay: 0.6s; }

.page-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.page-card > * {
    position: relative;
    z-index: 1;
}

.page-card.filter-hidden {
    display: none;
}

/* Team members should not use page-card animation */
.team-member.page-card,
.page-grid .team-member {
    opacity: 1 !important;
    animation: none !important;
}

.page-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-card-info {
    padding: 20px;
}

.page-card-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f1724;
    margin: 0 0 8px 0;
}

.page-card-info p {
    color: #64748b;
    margin: 0 0 15px 0;
}

.page-card-links {
    display: flex;
    gap: 10px;
}

.page-card-links a {
    padding: 8px 16px;
    background: #EF3B45;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.page-card-links a:hover {
    background: #d32f2f;
}

/* Icon Box */
.icon-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger animations for icon boxes */
.page-grid .icon-box:nth-child(1) { animation-delay: 0.1s; }
.page-grid .icon-box:nth-child(2) { animation-delay: 0.2s; }
.page-grid .icon-box:nth-child(3) { animation-delay: 0.3s; }
.page-grid .icon-box:nth-child(4) { animation-delay: 0.4s; }

.icon-box:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.icon-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #EF3B45;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.icon-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f1724;
    margin: 0 0 10px 0;
}

.icon-box h4 a {
    color: #0f1724;
    text-decoration: none;
}

.icon-box p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Section Background */
.section-bg {
    background: #f8fafc;
    padding: 60px 0;
    margin: 40px 0;
    position: relative;
}

/* Reduce gap between Hero Banner and Content Block */
.page-hero + .section-bg {
    margin-top: 0 !important;
    padding-top: 20px !important;
}

/* Reduce margin-bottom of hero section */
.page-hero {
    margin-bottom: 10px !important;
}

/* Instructor Card */
.instructor-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    transition: box-shadow 0.3s ease;
}

/* Stagger animations for instructor cards */
.page-grid .instructor-card:nth-child(1) { animation-delay: 0.1s; }
.page-grid .instructor-card:nth-child(2) { animation-delay: 0.2s; }
.page-grid .instructor-card:nth-child(3) { animation-delay: 0.3s; }
.page-grid .instructor-card:nth-child(4) { animation-delay: 0.4s; }

.instructor-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.instructor-img {
    position: relative;
    overflow: hidden;
}

.instructor-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.instructor-img .social {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instructor-card:hover .instructor-img .social {
    opacity: 1;
}

.instructor-img .social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EF3B45;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.instructor-img .social a:hover {
    background: #EF3B45;
    color: #fff;
}

.instructor-info {
    padding: 20px;
    text-align: center;
}

.instructor-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f1724;
    margin: 0 0 5px 0;
}

.instructor-info span {
    color: #EF3B45;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.instructor-info p {
    color: #64748b;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
}

.instructor-info .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.instructor-info .rating i {
    color: #ffd700;
}

.instructor-info .rating span {
    color: #64748b;
    font-size: 0.9rem;
    margin-left: 8px;
}

/* Pricing Card */
.pricing-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Stagger animations for pricing items */
.pricing-item:nth-child(1) { animation-delay: 0.1s; }
.pricing-item:nth-child(2) { animation-delay: 0.2s; }
.pricing-item:nth-child(3) { animation-delay: 0.3s; }

.pricing-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.pricing-item.animated {
    opacity: 1;
    animation: none;
}

/* Animation delays removed */

.pricing-item.featured {
    border: 3px solid #EF3B45;
}

.pricing-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f1724;
    margin: 0 0 20px 0;
}

.pricing-item .price {
    margin-bottom: 30px;
}

.pricing-item .price .currency {
    font-size: 1.5rem;
    color: #64748b;
    vertical-align: top;
}

.pricing-item .price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #EF3B45;
}

.pricing-item .price .period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 5px;
}

.pricing-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-item ul li {
    padding: 12px 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-item ul li:last-child {
    border-bottom: none;
}

.pricing-item ul li i {
    color: #10b981;
    font-size: 0.9rem;
}

.pricing-item .btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.pricing-item .btn-primary {
    background: #EF3B45;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
}

.pricing-item .btn-primary:hover {
    background: #d32f2f;
}

.pricing-item .btn-outline-primary {
    background: transparent;
    color: #EF3B45;
    border: 2px solid #EF3B45;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pricing-item .btn-outline-primary:hover {
    background: #EF3B45;
    color: #fff;
}

/* Accordion */
.accordion-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    opacity: 1;
    animation: none;
}

.accordion-button {
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-weight: 600;
    color: #0f1724;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: #EF3B45;
    font-weight: 300;
}

.accordion-button.active::after {
    content: '−';
}

.accordion-body {
    padding: 0 20px 20px;
    color: #64748b;
    line-height: 1.6;
    display: none;
}

.accordion-button.active + .accordion-body,
.accordion-body[style*="block"] {
    display: block;
}

/* Team Member - No Animation to Prevent Flashing */
.page-grid .team-member,
.team-member {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.page-grid .team-member *,
.team-member *,
.team-member *::before,
.team-member *::after {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
}

.team-member-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    opacity: 1 !important;
}

.team-member-info {
    padding: 20px;
    opacity: 1 !important;
}

.team-member-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f1724;
    margin: 0 0 5px 0;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
}

.team-member-info span {
    color: #EF3B45;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
}

.team-member-info p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
}

/* Stats/Count Box */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto 40px auto;
    max-width: 1200px;
    justify-content: center;
}

.count-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger animations for count boxes */
.stats-grid .count-box:nth-child(1) { animation-delay: 0.1s; }
.stats-grid .count-box:nth-child(2) { animation-delay: 0.2s; }
.stats-grid .count-box:nth-child(3) { animation-delay: 0.3s; }
.stats-grid .count-box:nth-child(4) { animation-delay: 0.4s; }

.count-box i {
    font-size: 2.5rem;
    color: #EF3B45;
    margin-bottom: 15px;
    display: block;
}

.count-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f1724;
    margin-bottom: 5px;
}

.count-box p {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* About Content */
.about-content-section {
    padding: 40px 20px;
}

/* Mission Row - Desktop: Image and Text side by side */
.mission-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.mission-image .img-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 36, 0.06);
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mission-image .img-wrap::after {
    content: '';
    position: absolute;
    left: -45px;
    top: 70%;
    transform: translateY(-50%);
    width: 45px;
    height: 90px;
    background: #EF3B45;
    border-radius: 12px 0 0 12px;
}

.mission-image .img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.mission-text {
    flex: 1;
    padding: 20px;
}

.mission-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f1724;
    margin: 0 0 20px 0;
}

.mission-text p {
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.mission-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-text ul li {
    padding: 10px 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-text ul li i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Legacy support for old class names */
.about-image {
}

.about-text {
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    padding: 20px;
}

.about-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f1724;
    margin: 0 0 20px 0;
}

.about-text p {
    color: #64748b;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-text ul li {
    padding: 10px 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text ul li i {
    color: #10b981;
    font-size: 1.1rem;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }

    .mission-row {
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .page-filters li {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Mission Row - Mobile: Image above, Text below */
    .mission-row {
        flex-direction: column;
        gap: 30px;
    }

    .mission-image {
        width: 100%;
        order: 1;
    }

    .mission-image .img-wrap {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }

    .mission-image .img-wrap::after {
        display: none;
    }

    .mission-text {
        width: 100%;
        order: 2;
        padding: 0;
    }

    .mission-text h3 {
        font-size: 1.5rem;
    }
}

/* Footer Action Cards */
.footer-action-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
}

.footer-action-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #E8F4F8;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #D1E7F0;
}

.footer-action-card:hover {
    background: #D1E7F0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.footer-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.footer-card-icon i {
    font-size: 48px;
    color: #0EA5E9;
}

.footer-card-text {
    color: #0f1724;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 968px) {
    .footer-action-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-action-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Help Center Section */
.help-center-section {
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: 40px;
}

.help-center-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.help-center-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f1724;
    margin-bottom: 15px;
}

.help-center-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #EF3B45;
    margin-bottom: 20px;
}

.help-center-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.help-center-hours {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.help-center-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #EF3B45;
    color: #fff;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 59, 69, 0.3);
}

.help-center-phone:hover {
    background: #d32f3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 59, 69, 0.4);
    color: #fff;
    text-decoration: none;
}

.help-center-phone i {
    font-size: 1.3rem;
}

.help-center-phone a {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 640px) {
    .help-center-title {
        font-size: 1.5rem;
    }
    
    .help-center-subtitle {
        font-size: 1.25rem;
    }
    
    .help-center-description {
        font-size: 1rem;
    }
    
    .help-center-phone {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* Footer Action Pages Styles */
.page-content-section {
    padding: 60px 0;
}

.content-box {
    max-width: 1000px;
    margin: 0 auto;
}

.content-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f1724;
    margin-bottom: 40px;
    text-align: center;
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #EF3B45;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f1724;
    margin-bottom: 10px;
}

.step-content p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

.timeline-icon {
    position: absolute;
    left: -32px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #EF3B45;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f1724;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #E8F4F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: #0EA5E9;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f1724;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Support Info */
.intro-text {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.support-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    color: #EF3B45;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f1724;
    margin-bottom: 15px;
}

.info-card p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.info-card a {
    color: #0EA5E9;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Ticket Form */
.ticket-form-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.ticket-form-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f1724;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0f1724;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0EA5E9;
}

.btn-primary {
    background: #EF3B45;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #d32f3a;
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-list {
        gap: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .support-info {
        grid-template-columns: 1fr;
    }
    
    .ticket-form-section {
        padding: 25px;
    }
}

/* Back to Home Button */
.back-to-home-btn {
    padding: 20px 0;
    margin-bottom: 20px;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #EF3B45;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 59, 69, 0.3);
}

.btn-home:hover {
    background: #d32f3a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 59, 69, 0.4);
    text-decoration: none;
}

.btn-home i {
    font-size: 1rem;
}

@media (max-width: 640px) {
    .back-to-home-btn {
        padding: 15px 0;
    }
    
    .btn-home {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
