        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            zoom: 0.9;
        }

        .contact-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            color: white;
        }

        .contact-info {
            flex: 1;
            background: linear-gradient(135deg, #30488f 0%, #224abe 100%);
            color: white;
            padding: 40px;
        }

        .contact-info h2 {
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-info p {
            margin-bottom: 30px;
            opacity: 0.9;
            color: white;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-detail i {
            font-size: 20px;
            margin-right: 15px;
            margin-top: 5px;
        }

        .contact-detail h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .contact-detail p {
            margin-bottom: 0;
            opacity: 0.9;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .map-container {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .map-container:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.8;
        }

        .map-container i {
            font-size: 24px;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        }

        .map-container p {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
            font-weight: 600;
        }

        .contact-form {
            flex: 1;
            padding: 40px;
        }

        .contact-form h3 {
            font-size: 24px;
            margin-bottom: 30px;
            color: #2e4384;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #29418a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #344d99;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 14px 20px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 0.3s;
            position: relative;
        }

        .submit-btn:hover {
            background-color: #2b468e;
        }

        .submit-btn:disabled {
            background-color: #a0a0a0;
            cursor: not-allowed;
        }

        .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .notification {
            position: fixed;
            top: 20px;
            left: 50%;
            padding: 15px 20px;
            border-radius: 5px;
            color: white;
            opacity: 0;
            transform: translate(-50%, -20px);
            transition: opacity 0.3s, transform 0.3s;
            z-index: 1001;
            /* Increased z-index to ensure it's above the header */
            width: 90%;
            max-width: 450px;
            display: flex;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            pointer-events: none;
        }

        .notification.show {
            opacity: 1;
            transform: translate(-50%, 0);
            pointer-events: auto;
        }

        .success {
            background-color: #28a745;
        }

        .error {
            background-color: #dc3545;
        }

        .notification i {
            margin-right: 10px;
            font-size: 18px;
        }

        @media (max-width: 900px) {
            .contact-container {
                flex-direction: column;
                margin: 20px;
            }
        }