  :root {
        --primary: #e53e3e;
        --primary-dark: #c53030;
        --primary-light: rgba(229, 62, 62, 0.1);
        --primary-hover: #b91c1c;
        --gold: #d4af37;
        --silver: #c0c0c0;
        --bronze: #cd7f32;
        --text-light: #f7fafc;
        --text-muted: #e2e8f0;
        --card-bg: #1a202c;
        --card-border: #2d3748;
        --section-bg: rgba(26, 32, 44, 0.5);
        --gradient-dark: linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(17, 24, 39, 0.95) 100%);
        --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
        --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.25);
        --transition-fast: all 0.2s ease;
        --transition-normal: all 0.3s ease;
        --transition-slow: all 0.5s ease;
        --border-radius-sm: 4px;
        --border-radius-md: 8px;
        --border-radius-lg: 12px;
        --border-radius-full: 9999px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .hero {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        margin-bottom: 3rem;
        overflow: hidden;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
        z-index: 1;
    }
    
    .hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 2rem;
        animation: fadeInUp 1.2s ease-out;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        letter-spacing: -0.5px;
    }
    
    .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .main-content {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        color: var(--text-light);
        letter-spacing: -0.5px;
    }
    
    .section-header h2 i {
        margin-right: 0.75rem;
        color: var(--primary);
        font-size: 1.75rem;
    }
    
    .section-divider {
        height: 4px;
        width: 60px;
        background: var(--primary);
        border-radius: 2px;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .section-divider::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        animation: shimmer 2s infinite;
    }
    
    @keyframes shimmer {
        0% {
            transform: translateX(0);
            opacity: 0.5;
        }
        100% {
            transform: translateX(60px);
            opacity: 0;
        }
    }
    
    .section-divider.center {
        margin-left: auto;
        margin-right: auto;
    }
    
    .coach-profile {
        background-color: var(--card-bg);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--card-border);
        transition: var(--transition-normal);
        margin-bottom: 4rem;
        position: relative;
        overflow: hidden;
    }
    
    .coach-profile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--primary), var(--primary-dark));
    }
    
    .coach-profile:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }
    
    .profile-header {
        margin-bottom: 2.5rem;
    }
    
    .profile-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2rem;
    }
    
    @media (min-width: 992px) {
        .profile-grid {
            grid-template-columns: 1fr 2fr;
            align-items: start;
        }
    }
    
    .profile-image-container {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .profile-image {
        position: relative;
        border-radius: var(--border-radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        aspect-ratio: 3/4;
        width: 100%;
    }
    
    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: var(--transition-slow);
    }
    
    .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
        display: flex;
        align-items: flex-end;
        padding: 1.5rem;
        opacity: 0;
        transition: var(--transition-normal);
    }
    
    .overlay-content {
        display: flex;
        align-items: center;
        color: #fff;
    }
    
    .overlay-content i {
        font-size: 1.5rem;
        margin-right: 0.75rem;
        color: var(--primary);
    }
    
    .overlay-content span {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .profile-image:hover .image-overlay {
        opacity: 1;
    }
    
    .profile-image:hover img {
        transform: scale(1.05);
    }
    
    .experience-badge {
        position: absolute;
        bottom: -20px;
        right: 20px;
        width: 90px;
        height: 90px;
        background-color: var(--primary);
        border-radius: var(--border-radius-full);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(229, 62, 62, 0.5);
        z-index: 10;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(229, 62, 62, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
        }
    }
    
    .experience-badge span:first-child {
        font-size: 1.8rem;
        line-height: 1;
        margin-bottom: 0.25rem;
    }
    
    .experience-badge span:last-child {
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .profile-bio {
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        font-size: 1.05rem;
    }
    
    .profile-bio p {
        margin-bottom: 1.25rem;
        text-align: justify;
    }
    
    .profile-bio p:last-child {
        margin-bottom: 0;
    }
    
    .profile-highlights {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    @media (min-width: 768px) {
        .profile-highlights {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    .highlight-item {
        display: flex;
        align-items: flex-start;
        transition: var(--transition-normal);
        padding: 1rem;
        border-radius: var(--border-radius-md);
        border: 1px solid transparent;
    }
    
    .highlight-item:hover {
        background-color: rgba(229, 62, 62, 0.05);
        border-color: rgba(229, 62, 62, 0.2);
        transform: translateY(-5px);
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: var(--border-radius-full);
        background-color: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        color: var(--primary);
        font-size: 1.25rem;
        transition: var(--transition-normal);
    }
    
    .highlight-item:hover .highlight-icon {
        background-color: var(--primary);
        color: #fff;
        transform: scale(1.1);
    }
    
    .highlight-content h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--text-light);
    }
    
    .highlight-content p {
        color: var(--text-muted);
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    .timeline-section {
        padding: 5rem 0;
        background-color: var(--section-bg);
        position: relative;
        overflow: hidden;
    }
    
    .timeline-section::before,
    .timeline-section::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(229, 62, 62, 0.05);
        z-index: 0;
    }
    
    .timeline-section::before {
        top: -100px;
        left: -100px;
    }
    
    .timeline-section::after {
        bottom: -100px;
        right: -100px;
    }
    
    .timeline {
        position: relative;
        max-width: 800px;
        margin: 3rem auto 0;
        padding: 2rem 0;
        z-index: 1;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 3px;
        height: 100%;
        background-color: var(--primary);
        transform: translateX(-50%);
    }
    
    .timeline-item {
        position: relative;
        margin-bottom: 3rem;
        display: flex;
        justify-content: flex-end;
        padding-right: 40px;
        width: 50%;
        left: 0;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 40px;
        left: 50%;
    }
    
    .timeline-marker {
        position: absolute;
        top: 15px;
        right: -8px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: var(--primary);
        border: 3px solid var(--card-bg);
        z-index: 1;
        transition: var(--transition-normal);
    }
    
    .timeline-item:hover .timeline-marker {
        transform: scale(1.3);
        box-shadow: 0 0 0 5px rgba(229, 62, 62, 0.2);
    }
    
    .timeline-item:nth-child(even) .timeline-marker {
        right: auto;
        left: -8px;
    }
    
    .timeline-content {
        background-color: var(--card-bg);
        border-radius: var(--border-radius-md);
        padding: 1.75rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--card-border);
        transition: var(--transition-normal);
        width: 100%;
        max-width: 350px;
        position: relative;
    }
    
    .timeline-content::before {
        content: '';
        position: absolute;
        top: 15px;
        right: -10px;
        width: 20px;
        height: 20px;
        background-color: var(--card-bg);
        border-right: 1px solid var(--card-border);
        border-bottom: 1px solid var(--card-border);
        transform: rotate(-45deg);
    }
    
    .timeline-item:nth-child(even) .timeline-content::before {
        right: auto;
        left: -10px;
        transform: rotate(135deg);
        border-right: none;
        border-left: 1px solid var(--card-border);
        border-bottom: 1px solid var(--card-border);
    }
    
    .timeline-content:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
        border-color: var(--primary);
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--primary);
    }
    
    .timeline-content p {
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .timeline-icon {
        position: absolute;
        bottom: 15px;
        right: 15px;
        color: rgba(229, 62, 62, 0.3);
        font-size: 1.5rem;
        transition: var(--transition-normal);
    }
    
    .timeline-content:hover .timeline-icon {
        color: var(--primary);
        transform: scale(1.2);
    }
    
    @media (max-width: 768px) {
        .timeline::before {
            left: 30px;
        }
        
        .timeline-item,
        .timeline-item:nth-child(even) {
            width: 100%;
            padding-left: 70px;
            padding-right: 0;
            left: 0;
            justify-content: flex-start;
        }
        
        .timeline-marker,
        .timeline-item:nth-child(even) .timeline-marker {
            left: 22px;
            right: auto;
        }
        
        .timeline-content,
        .timeline-item:nth-child(even) .timeline-content {
            max-width: 100%;
        }
        
        .timeline-content::before,
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -10px;
            right: auto;
            transform: rotate(135deg);
            border-right: none;
            border-left: 1px solid var(--card-border);
            border-bottom: 1px solid var(--card-border);
        }
    }
    
    .marianne-section {
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .marianne-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e53e3e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
        z-index: -1;
    }
    
    .marianne-intro {
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 3rem;
        font-size: 1.1rem;
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .achievements-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.75rem;
        margin-bottom: 3.5rem;
    }
    
    .achievement-item {
        background-color: var(--card-bg);
        border-radius: var(--border-radius-md);
        padding: 1.75rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--card-border);
        transition: var(--transition-normal);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }
    
    .achievement-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, var(--primary), transparent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }
    
    .achievement-item:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }
    
    .achievement-item:hover::after {
        transform: scaleX(1);
    }
    
    .highlight-achievement {
        border-color: var(--primary);
        background-color: rgba(229, 62, 62, 0.05);
    }
    
    .achievement-year {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1.25rem;
        position: relative;
        display: inline-block;
    }
    
    .achievement-year::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: var(--primary);
    }
    
    .achievement-content {
        flex: 1;
    }
    
    .achievement-content h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--text-light);
    }
    
    .achievement-content p {
        color: var(--text-muted);
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    .achievement-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        color: rgba(229, 62, 62, 0.2);
        font-size: 1.5rem;
        transition: var(--transition-normal);
    }
    
    .achievement-item:hover .achievement-icon {
        color: var(--primary);
        transform: scale(1.2) rotate(15deg);
    }
    
    .medal-icon {
        opacity: 0.8;
        font-size: 1.75rem;
    }
    
    .gold-icon {
        color: var(--gold);
    }
    
    .silver-icon {
        color: var(--silver);
    }
    
    .bronze-icon {
        color: var(--bronze);
    }
    
    .medal {
        display: inline-block;
        padding: 0.35rem 0.85rem;
        border-radius: var(--border-radius-sm);
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .medal.gold {
        background-color: rgba(212, 175, 55, 0.2);
        color: var(--gold);
    }
    
    .medal.silver {
        background-color: rgba(192, 192, 192, 0.2);
        color: var(--silver);
    }
    
    .medal.bronze {
        background-color: rgba(205, 127, 50, 0.2);
        color: var(--bronze);
    }
    
    .national-championships {
        background-color: var(--card-bg);
        border-radius: var(--border-radius-md);
        padding: 2rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--primary);
        transition: var(--transition-normal);
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .national-championships::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 100px;
        height: 100px;
        background-color: var(--primary);
        opacity: 0.1;
        border-radius: 50%;
    }
    
    .national-championships:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }
    
    .championship-header {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .championship-header i {
        font-size: 2rem;
        color: var(--primary);
        margin-right: 1rem;
    }
    
    .championship-header h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-light);
    }
    
    .championship-years {
        display: flex;
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap;
    }
    
    .year-badge {
        background-color: var(--primary);
        color: #fff;
        padding: 0.6rem 1.25rem;
        border-radius: var(--border-radius-sm);
        font-weight: 600;
        transition: var(--transition-normal);
        box-shadow: 0 4px 10px rgba(229, 62, 62, 0.3);
    }
    
    .year-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(229, 62, 62, 0.4);
    }
    
    .philosophy-section {
        padding: 5rem 0;
        background-color: var(--section-bg);
        position: relative;
        overflow: hidden;
    }
    
    .philosophy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .philosophy-item {
        background-color: var(--card-bg);
        border-radius: var(--border-radius-md);
        padding: 2rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--card-border);
        transition: var(--transition-normal);
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .philosophy-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(229, 62, 62, 0.1), transparent 70%);
        z-index: -1;
        opacity: 0;
        transition: var(--transition-normal);
    }
    
    .philosophy-item:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
        border-color: var(--primary);
    }
    
    .philosophy-item:hover::before {
        opacity: 1;
    }
    
    .philosophy-icon {
        width: 70px;
        height: 70px;
        border-radius: var(--border-radius-full);
        background-color: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--primary);
        font-size: 1.75rem;
        transition: var(--transition-normal);
    }
    
    .philosophy-item:hover .philosophy-icon {
        background-color: var(--primary);
        color: #fff;
        transform: scale(1.1);
    }
    
    .philosophy-item h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-light);
    }
    
    .philosophy-item p {
        color: var(--text-muted);
        line-height: 1.7;
        font-size: 0.95rem;
    }
    
    .testimonials-section {
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .testimonials-slider {
        position: relative;
        max-width: 800px;
        margin: 3rem auto 2rem;
        overflow: hidden;
    }
    
    .testimonial-slide {
        display: none;
        animation: fadeIn 0.5s ease forwards;
    }
    
    .testimonial-slide.active {
        display: block;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .testimonial-content {
        background-color: var(--card-bg);
        border-radius: var(--border-radius-md);
        padding: 2.5rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--card-border);
        transition: var(--transition-normal);
        position: relative;
    }
    
    .testimonial-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(229, 62, 62, 0.05), transparent 70%);
        border-radius: var(--border-radius-md);
        z-index: 0;
    }
    
    .testimonial-quote {
        position: relative;
        z-index: 1;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-quote i {
        position: absolute;
        top: -10px;
        left: -10px;
        color: var(--primary);
        font-size: 2rem;
        opacity: 0.2;
    }
    
    .testimonial-quote p {
        color: var(--text-muted);
        line-height: 1.8;
        font-size: 1.1rem;
        font-style: italic;
        padding-left: 2rem;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: var(--border-radius-full);
        background-color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: var(--text-light);
    }
    
    .author-info p {
        color: var(--primary);
        font-size: 0.9rem;
    }
    
    .testimonial-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        border-radius: var(--border-radius-full);
        background-color: var(--card-bg);
        border: 1px solid var(--card-border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition-normal);
    }
    
    .testimonial-prev:hover,
    .testimonial-next:hover {
        background-color: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }
    
    .testimonial-dots {
        display: flex;
        align-items: center;
        margin: 0 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: var(--border-radius-full);
        background-color: var(--card-border);
        margin: 0 5px;
        cursor: pointer;
        transition: var(--transition-normal);
    }
    
    .dot.active {
        background-color: var(--primary);
        transform: scale(1.3);
    }
    
    .cta-section {
        padding: 5rem 0;
        background: var(--gradient-dark);
        position: relative;
        overflow: hidden;
    }
    
    .cta-section::before,
    .cta-section::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(229, 62, 62, 0.05);
        z-index: 0;
    }
    
    .cta-section::before {
        top: -150px;
        right: -150px;
    }
    
    .cta-section::after {
        bottom: -150px;
        left: -150px;
    }
    
    .cta-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    @media (min-width: 992px) {
        .cta-grid {
            grid-template-columns: 1.5fr 1fr;
        }
    }
    
    .cta-content h2 {
        font-size: 2.75rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--text-light);
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 1.15rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
        color: var(--text-muted);
    }
    
    .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1.25rem;
    }
    
    .cta-quote {
        background-color: var(--card-bg);
        border-radius: var(--border-radius-md);
        padding: 2.5rem;
        box-shadow: var(--shadow-md);
        border-left: 4px solid var(--primary);
        transition: var(--transition-normal);
        position: relative;
        overflow: hidden;
    }
    
    .cta-quote::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at bottom right, rgba(229, 62, 62, 0.05), transparent 70%);
        z-index: 0;
    }
    
    .cta-quote:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }
    
    blockquote {
        position: relative;
        padding-left: 2.5rem;
        z-index: 1;
    }
    
    blockquote i {
        position: absolute;
        top: 0;
        left: 0;
        color: var(--primary);
        font-size: 2rem;
        opacity: 0.5;
    }
    
    blockquote p {
        font-size: 1.3rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
        color: var(--text-muted);
        font-style: italic;
    }
    
    blockquote cite {
        font-style: normal;
        font-weight: 600;
        color: var(--primary);
        font-size: 1.1rem;
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.75rem;
        border-radius: var(--border-radius-md);
        font-weight: 600;
        transition: var(--transition-normal);
        text-decoration: none;
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.5s ease;
        z-index: -1;
    }
    
    .btn:hover::before {
        left: 100%;
    }
    
    .btn i {
        margin-right: 0.75rem;
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 1.1rem 2.25rem;
        font-size: 1.1rem;
    }
    
    .btn-primary {
        background-color: var(--primary);
        color: #fff;
        box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
    }
    
    .btn-primary:hover {
        background-color: var(--primary-hover);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    }
    
    .btn-outline {
        background-color: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: 0 4px 15px rgba(229, 62, 62, 0.1);
    }
    
    .btn-outline:hover {
        background-color: var(--primary);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(229, 62, 62, 0.3);
    }
    
    @media (max-width: 992px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .cta-content h2 {
            font-size: 2.25rem;
        }
        
        .profile-highlights {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .hero {
            height: 450px;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-description {
            font-size: 1.1rem;
        }
        
        .section-header h2 {
            font-size: 1.75rem;
        }
        
        .cta-content h2 {
            font-size: 2rem;
        }
        
        .cta-buttons {
            flex-direction: column;
        }
        
        .btn-lg {
            width: 100%;
        }
        
        .philosophy-grid {
            grid-template-columns: 1fr;
        }
        
        .testimonial-quote p {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .hero {
            height: 400px;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .highlight-item {
            flex-direction: column;
        }
        
        .highlight-icon {
            margin-bottom: 1rem;
            margin-right: 0;
        }
        
        .achievement-item {
            padding: 1.25rem;
        }
        
        .achievement-year {
            font-size: 1.5rem;
        }
        
        .achievement-content h3 {
            font-size: 1.1rem;
        }
        
        .testimonial-content {
            padding: 1.5rem;
        }
        
        .testimonial-author {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .author-avatar {
            margin-bottom: 0.75rem;
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }