* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --dark: #1e3a8a;
            --accent: #f97316;
            --dark-bg: #0f172a;
            --light-bg: #f9fafb;
            --text: #1f2937;
            --gray: #6b7280;
            --border: #e5e7eb;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            color: var(--text);
            line-height: 1.6;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;
            background: white;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-svg {
            width: 45px;
            height: 45px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 50px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover, nav a.active {
            color: var(--primary);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2.5px;
            background: var(--primary);
        }

        section {
            padding: 120px 60px;
        }

        section.light-bg {
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .section-header h1 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 15px;
            letter-spacing: -0.8px;
            color: var(--text);
        }

        .section-header p {
            font-size: 17px;
            color: var(--gray);
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: start;
        }

        .contact-left {
            opacity: 0;
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .contact-left h2 {
            font-size: 36px;
            font-weight: 900;
            margin-bottom: 25px;
            color: var(--text);
        }

        .contact-left p {
            font-size: 15px;
            color: var(--gray);
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .contact-block {
            margin-bottom: 45px;
        }

        .contact-block h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        .contact-block p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .contact-block a {
            color: var(--gray);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .contact-block a:hover {
            color: var(--primary);
        }

        .contact-right {
            opacity: 0;
            animation: slideInRight 0.8s ease-out forwards;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 13px 16px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            font-family: inherit;
            font-size: 14px;
            color: var(--text);
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #d1d5db;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
            background: #fafbfc;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin-top: 12px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37,99,235,0.3);
        }

        .map-section {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid var(--border);
        }

        .map-section h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--text);
        }

        .map-container {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--primary), #3b82f6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.3;
            font-size: 60px;
            font-weight: 900;
        }

        footer {
            background: var(--dark-bg);
            color: white;
            padding: 80px 60px 30px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        footer h4 {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        footer p {
            color: #9ca3af;
            font-size: 14px;
            margin-bottom: 10px;
            line-height: 1.8;
        }

        footer a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            font-size: 14px;
            margin-bottom: 8px;
        }

        footer a:hover {
            color: white;
        }

        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 20px;
            text-align: center;
            color: #6b7280;
            font-size: 13px;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1024px) {
            nav { padding: 15px 40px; }
            nav ul { gap: 35px; }
            section { padding: 80px 40px; }
            .section-header h1 { font-size: 36px; }
            .contact-container { grid-template-columns: 1fr; gap: 60px; }
            .contact-left h2 { font-size: 32px; }
            footer { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }

        @media (max-width: 768px) {
            nav { flex-direction: column; gap: 12px; padding: 12px 20px; }
            nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
            section { padding: 60px 20px; }
            .section-header h1 { font-size: 28px; }
            .contact-left h2 { font-size: 26px; }
            .map-container { height: 300px; }
            footer { grid-template-columns: 1fr; gap: 30px; padding: 50px 20px 15px; }
        }

        @media (max-width: 480px) {
            nav { padding: 10px 12px; }
            nav a { font-size: 12px; }
            .section-header h1 { font-size: 24px; }
            .contact-left h2 { font-size: 22px; }
            .map-container { height: 250px; font-size: 40px; }
        }