        body {
            font-family: 'Oxanium', Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(to right, #4a1c6b, #1e3a8a);
            color: white;
            padding: 15px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Oxanium', sans-serif;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
        }
        
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        
        nav li {
            margin-left: 20px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #e0e0ff;
        }
        
        .page-header {
            text-align: center;
            padding: 50px 0 30px;
        }
        
        .page-header h1 {
            color: #4a1c6b;
            font-size: 36px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .page-header p {
            color: #666;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }
        
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin: 30px 0 60px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .contact-form h2 {
            font-weight: 700;
            color: #4a1c6b;
            margin-top: 0;
            margin-bottom: 25px;
            font-size: 24px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-details {
            background: linear-gradient(to right, #4a1c6b, #1e3a8a);
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .contact-details h2 {
            margin-top: 0;
            margin-bottom: 20px;
            font-weight: 700;
            font-size: 24px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            font-size: 24px;
            margin-right: 15px;
            min-width: 30px;
        }
        
        .contact-text h3 {
            margin: 0 0 5px 0;
            font-size: 18px;
            font-weight: 600;
        }
        
        .contact-text p {
            margin: 0;
            color: rgba(255,255,255,0.9);
            font-weight: 400;
        }
        
        .map-container {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .form-row {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
        .form-row input,
        .form-row textarea,
        .form-row select {
            width: 100%;
            padding: 12px 15px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
            font-family: 'Oxanium', Arial, sans-serif;
            font-weight: 400;
        }
        
        .form-row textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-row input:focus,
        .form-row textarea:focus,
        .form-row select:focus {
            outline: none;
            border-color: #4a1c6b;
            box-shadow: 0 0 5px rgba(74, 28, 107, 0.3);
        }
        
        .submit-btn {
            background: linear-gradient(to right, #4a1c6b, #1e3a8a);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-family: 'Oxanium', sans-serif;
        }
        
        .submit-btn:hover {
            background: linear-gradient(to right, #5b2b8f, #294cb3);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        footer {
            background-color: #1e1e1e;
            color: white;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            color: #ddd;
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 400;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 14px;
            font-weight: 400;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            nav ul {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            nav li {
                margin: 0 10px;
            }
            
            .page-header h1 {
                font-size: 30px;
            }
            
            .page-header p {
                font-size: 16px;
                padding: 0 15px;
            }
            
            .contact-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .contact-form,
            .contact-info {
                min-width: 100%;
            }
            
            .map-container {
                height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }
            
            .logo {
                font-size: 20px;
            }
            
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            
            nav li {
                margin: 0;
            }
            
            .page-header {
                padding: 30px 0 20px;
            }
            
            .page-header h1 {
                font-size: 26px;
            }
            
            .contact-form,
            .contact-details {
                padding: 20px;
            }
            
            .form-row input,
            .form-row textarea,
            .form-row select {
                padding: 10px 12px;
                font-size: 15px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-column {
                min-width: 100%;
            }
        }
        
        .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            display: none;
            font-weight: 500;
            font-size: 16px;
            text-align: center;
        }
        
        input::placeholder,
        textarea::placeholder,
        select:invalid {
            color: #888;
            font-weight: 400;
        }
        
        option {
            font-weight: 400;
        }