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

    :root {
        --primary-color: #000000;
        --secondary-color: #00796b;
        --accent-color: #000000;
        --lobo-gray: #636566;
        --silver: #a7aba4;
        --light-bg: #f9f9f9;
        --text-dark: #000000;
        --text-light: #333333;
        --border-color: #e8e8e8;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
        font-family: "Gotham A","Gotham B","Helvetica Neue",Helvetica,Arial,sans-serif;
        color: var(--text-dark);
        background-color: #ffffff;
        line-height: 1.6;
    }

    /* Header & Navigation */
    header {
        background: linear-gradient(135deg, #ba0c2f 0%, #a01830 100%);
        color: white;
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0.5rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        gap: 1rem;
    }

    /* Logo Styling */
    .logo {
        font-family: "Vitesse A","Vitesse B",Cambria,Rockwell,"Times New Roman",serif;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        text-decoration: none;
        color: white;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .logo img {
        height: 3em;
        width: auto;
    }

    .logo-text-wrapper {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .logo-text-wrapper span {
        color: white;
        font-weight: 700;
    }

    .logo:hover {
        opacity: 0.85;
    }

    .logo-subtitle {
        font-family: 'Lato', sans-serif;
        font-size: 0.65rem;
        font-weight: 300;
        letter-spacing: 1px;
        text-transform: uppercase;
        opacity: 0.9;
    }

    /* Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        gap: 0.35rem;
        z-index: 1001;
        margin-left: auto;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Navigation Menu */
    nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        overflow: hidden;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 0.3rem;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
        justify-content: flex-end;
    }

    nav li {
        margin: 0;
    }

    nav a {
        color: white;
        text-decoration: none;
        font-weight: 400;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        position: relative;
        transition: var(--transition);
        padding: 0.6rem 0.8rem;
        display: block;
        white-space: nowrap;
        border-bottom: 3px solid transparent;
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-bottom-color: white;
    }

    nav a.active {
        background-color: rgba(255, 255, 255, 0.15);
        border-bottom-color: white;
        font-weight: 600;
    }

    /* External link indicator */
    nav a[target="_blank"]::after {
        content: ' ↗';
        font-size: 0.8em;
        display: inline;
    }

    /* Main Content */
    main {
        min-height: calc(100vh - 200px);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .hero {
        background: linear-gradient(135deg, #ba0c2f 0%, #a01830 100%);
        color: white;
        padding: 2rem 2rem;
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(0, 121, 107, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(196, 30, 58, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero h1 {
        font-family: "Vitesse A","Vitesse B",Cambria,Rockwell,"Times New Roman",serif;
        font-size: 3rem;
        margin-bottom: 1rem;
        letter-spacing: -1px;
        font-weight: 700;
    }

    .hero p {
        font-size: 1.2rem;
        opacity: 0.95;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
        font-weight: 300;
    }

    /* Page Content */
    .page-content {
        animation: fadeInUp 0.6s ease-out 0.2s both;
    }

    .section {
        margin-bottom: 4rem;
    }

    .section h2 {
        font-family: "Vitesse A","Vitesse B",Cambria,Rockwell,"Times New Roman",serif;
        font-size: 2.2rem;
        color: #000000;
        margin-bottom: 1.5rem;
        letter-spacing: -0.5px;
        position: relative;
        padding-bottom: 1rem;
    }

    .section h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #00796b, transparent);
    }

    .section h3 {
        color: #000000;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .section p {
        color: #333333;
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    /* Cards */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
    }

    .card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
        border-color: #00796b;
    }

    .card h3 {
        color: #000000;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 0.8rem 1.5rem;
        background: #00796b;
        color: white;
        text-decoration: none;
        border-radius: 4px;
        transition: var(--transition);
        border: 2px solid #00796b;
        cursor: pointer;
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 0.3px;
    }

    .btn:hover {
        background: #ba0c2f;
        border-color: #ba0c2f;
    }

    .btn-secondary {
        background: transparent;
        color: #000000;
        border-color: #000000;
    }

    .btn-secondary:hover {
        background: #ba0c2f;
        color: white;
        border-color: #ba0c2f;
    }

    /* Footer */
    footer {
        background: #ba0c2f;
        color: white;
        padding: 3rem 2rem;
        margin-top: 4rem;
        text-align: center;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-content p {
        margin-bottom: 0.5rem;
        opacity: 0.9;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin: 1.5rem 0;
        flex-wrap: wrap;
    }

    .footer-links a {
        color: white;
        text-decoration: none;
        transition: var(--transition);
        opacity: 0.8;
    }

    .footer-links a:hover {
        opacity: 1;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* ===== RESPONSIVE DESIGN ===== */
    @media (max-width: 1024px) {
        nav a {
            padding: 0.5rem 0.7rem;
            font-size: 0.8rem;
        }

        nav ul {
            gap: 0.2rem;
        }

        .logo-text-wrapper {
            display: none;
        }

        .logo {
            gap: 0.5rem;
        }
    }

    @media (max-width: 768px) {
        .nav-container {
            flex-wrap: wrap;
            padding: 0.5rem 1.5rem;
            gap: 0;
        }

        .logo {
            font-size: 1rem;
            flex: 1;
        }

        .logo img {
            height: 2.5em;
        }

        .logo-text-wrapper {
            display: none;
        }

        /* Show hamburger menu on mobile */
        .hamburger {
            display: flex;
        }

        /* Hide nav menu by default, show when active */
        nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #ba0c2f 0%, #a01830 100%);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            width: 100%;
            justify-content: flex-start;
        }

        nav.active {
            max-height: 500px;
        }

        nav ul {
            flex-direction: column;
            gap: 0;
            padding: 0.5rem 0;
            width: 100%;
            flex-wrap: nowrap;
            justify-content: flex-start;
        }

        nav li {
            width: 100%;
        }

        nav a {
            display: block;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 4px solid transparent;
            font-size: 0.95rem;
            white-space: normal;
        }

        nav a[target="_blank"]::after {
            content: ' ↗';
        }

        nav a:hover {
            background: rgba(0, 0, 0, 0.1);
            border-left-color: white;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav a.active {
            background: rgba(0, 0, 0, 0.15);
            border-left-color: white;
        }

        /* Hero section */
        .hero {
            padding: 3rem 1.5rem;
            margin-bottom: 2rem;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 1rem;
        }

        /* Sections */
        .section {
            margin-bottom: 2.5rem;
        }

        .section h2 {
            font-size: 1.8rem;
        }

        .section h3 {
            font-size: 1.1rem;
        }

        /* Container padding */
        .container {
            padding: 0 1.5rem;
        }

        /* Cards grid */
        .cards-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        /* Buttons */
        .btn {
            width: 100%;
            text-align: center;
        }

        /* Footer */
        footer {
            padding: 2rem 1.5rem;
            margin-top: 2rem;
        }

        .footer-links {
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            display: block;
        }
    }

    @media (max-width: 480px) {
        .nav-container {
            padding: 0.5rem 1rem;
        }

        .logo {
            font-size: 0.9rem;
            gap: 0.5rem;
        }

        .logo img {
            height: 2em;
        }

        nav a {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
        }

        .hero {
            padding: 2rem 1rem;
        }

        .hero h1 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .hero p {
            font-size: 0.9rem;
        }

        .section h2 {
            font-size: 1.5rem;
        }

        .section h3 {
            font-size: 1rem;
        }

        .section p {
            font-size: 0.9rem;
        }

        .card {
            padding: 1.5rem;
        }

        .btn {
            padding: 0.7rem 1.2rem;
            font-size: 0.9rem;
        }

        .container {
            padding: 0 1rem;
        }
    }