* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #1F2937;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(31, 41, 55, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #EC4899;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #F9FAFB;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #8B5CF6;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #F9FAFB;
            margin: 3px 0;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-contact {
            background: white;
            border-radius: 20px;
            padding: 4rem;
            margin-bottom: 3rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
        }

        .hero-contact h1 {
            font-size: 3rem;
            color: #8B5CF6;
            margin-bottom: 1rem;
        }

        .hero-contact p {
            font-size: 1.3rem;
            color: #6B7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-sections {
            display: grid;
            gap: 3rem;
        }

        .contact-form-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .contact-form-section h2 {
            font-size: 2.2rem;
            color: #EC4899;
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #374151;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #8B5CF6;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-button {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
        }

        .contact-info {
            background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
            color: white;
            border-radius: 20px;
            padding: 3rem;
        }

        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .info-card {
            background: rgba(255,255,255,0.2);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .info-card h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .info-card p {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .info-card a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .info-card a:hover {
            opacity: 0.8;
        }

        .team-section {
            background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
            color: white;
            border-radius: 20px;
            padding: 3rem;
        }

        .team-section h2 {
            font-size: 2.2rem;
            color: #EC4899;
            margin-bottom: 2rem;
            text-align: center;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .team-member {
            background: rgba(139, 92, 246, 0.2);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border-left: 4px solid #EC4899;
        }

        .team-member h3 {
            color: #EC4899;
            margin-bottom: 0.5rem;
        }

        .team-member .role {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 1rem;
        }

        .office-info {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .office-info h2 {
            font-size: 2.2rem;
            color: #8B5CF6;
            margin-bottom: 2rem;
            text-align: center;
        }

        .office-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .office-details h3 {
            color: #EC4899;
            margin-bottom: 1rem;
        }

        .office-details p {
            margin-bottom: 1rem;
            color: #6B7280;
            line-height: 1.8;
        }

        .office-hours {
            background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .office-hours h4 {
            color: #8B5CF6;
            margin-bottom: 1rem;
        }

        .office-hours p {
            margin-bottom: 0.5rem;
            color: #374151;
        }

        .map-placeholder {
            background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
            border-radius: 15px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6B7280;
            font-size: 1.1rem;
            font-weight: 500;
        }

        footer {
            background: #1F2937;
            color: white;
            padding: 3rem 2rem 1rem;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #EC4899;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #8B5CF6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            margin-top: 2rem;
            color: #9CA3AF;
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            z-index: 1002;
            display: none;
            text-align: center;
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
            display: none;
        }

        .popup h3 {
            color: #8B5CF6;
            margin-bottom: 1rem;
        }

        .popup button {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: #1F2937;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            main {
                padding: 2rem 1rem;
            }

            .hero-contact {
                padding: 2rem;
            }

            .hero-contact h1 {
                font-size: 2rem;
            }

            .contact-form-section, .contact-info, .team-section, .office-info {
                padding: 2rem;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .office-grid {
                grid-template-columns: 1fr;
            }

            .info-grid, .team-grid {
                grid-template-columns: 1fr;
            }
        }

