    :root {
            --background: #ffffff;
            --foreground: #1f2937;
            --card: #f9fafb;
            --primary: #000000;
            --primary-foreground: #ffffff;
            --muted-foreground: #6b7280;
            --border: #e5e7eb;
            --radius: 0.5rem;
        }

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

        body {
            font-family: 'DM Sans', sans-serif;
            line-height: 1.6;
            color: var(--foreground);
            background-color: var(--background);
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 1rem 2rem;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--foreground);
            text-decoration: none;
        }

        .back-btn {
            color: var(--foreground);
            text-decoration: none;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .back-btn:hover {
            color: var(--muted-foreground);
        }

        .hero {
            height: 60vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./assets/img/hero-01.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.25rem;
            font-weight: 300;
            opacity: 0.9;
        }

        .section {
            padding: 6rem 2rem;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .content h2 {
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 2rem;
        }

        .content p {
            font-size: 1.125rem;
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 2rem;
            color: var(--muted-foreground);
        }

        .info-card {
            background: var(--card);
            padding: 2rem;
            border-radius: var(--radius);
            height: fit-content;
        }

        .info-card h3 {
            font-size: 1.25rem;
            font-weight: 400;
            margin-bottom: 1rem;
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border);
            font-weight: 300;
        }

        .info-list li:last-child {
            border-bottom: none;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            font-weight: 400;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: var(--primary);
            color: var(--primary-foreground);
        }

        .btn:hover {
            background-color: #374151;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }