  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #006233;
            --secondary-color: #D21034;
            --dark-bg: #2a2a2a;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #666;
            --gold-accent: #FFD700;
            --white: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--light-bg);
        }

        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #004d28 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                transparent 45%, 
                var(--white) 45%, 
                var(--white) 55%, 
                transparent 55%, 
                transparent 100%),
                linear-gradient(0deg, 
                transparent 0%, 
                transparent 40%, 
                var(--secondary-color) 40%, 
                var(--secondary-color) 60%, 
                transparent 60%, 
                transparent 100%);
            opacity: 0.1;
            pointer-events: none;
        }

        header h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        header p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        nav {
            background: var(--dark-bg);
            padding: 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        nav a {
            color: white;
            text-decoration: none;
            padding: 1.2rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        nav a:hover {
            background: var(--secondary-color);
            border-bottom-color: var(--gold-accent);
            transform: translateY(-2px);
        }

        section {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 2rem;
        }

        .about-section {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .about-image img {
            width: 100%;
            max-width: 450px;
            height: auto;
            border-radius: 18px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            text-align: left;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--white), var(--secondary-color));
            border-radius: 2px;
        }

        .about-content p {
            text-align: left;
            font-size: clamp(1rem, 2vw, 1.1rem);
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .cta-container {
            text-align: left;
            margin-top: 2.5rem;
        }

        .button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 98, 51, 0.3);
            position: relative;
            overflow: hidden;
        }

        .button::before {
            content: '⭐';
            position: absolute;
            left: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(210, 16, 52, 0.5);
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            padding-left: 3rem;
        }

        .button:hover::before {
            opacity: 1;
            left: 15px;
        }

        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }

        h2.h2pairs {
            color: var(--secondary-color);
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--white), var(--secondary-color));
            border-radius: 2px;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,98,51,0.2);
        }

        .card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .card h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            padding: 1rem 1.5rem 0.5rem;
            margin: 0;
        }

        .card p {
            color: var(--text-light);
            padding: 0 1.5rem 1.5rem;
            margin: 0;
            line-height: 1.6;
            text-align: left;
        }

        footer {
            background: var(--dark-bg);
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
        }

        footer p {
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .about-section {
                flex-direction: column;
                text-align: center;
            }

            .about-content h2,
            .about-content p,
            .cta-container {
                text-align: center;
            }

            .about-content h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }