        /* --- 1. GLOBAL STYLES (Scoped) --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .contact-page-wrapper {
            font-family: 'Roboto', sans-serif;
            min-height: 100vh;
            /* Matching your site's gradient */
            background: linear-gradient(to bottom, #01315f, #000000);
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: white;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .contact-page-wrapper main {
            flex: 1; 
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 20px;
        }

        a { text-decoration: none; }

        /* --- 2. HEADER STYLES (Matching existing) --- */
        .header {
            overflow: hidden;
            background-color: #f1f1f1;
            padding: 20px 10px;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
        }

        .header a {
            float: left;
            color: black;
            text-align: center;
            padding: 12px;
            font-size: 18px;
            line-height: 25px;
            border-radius: 4px;
        }

        .header a.logo {
            font-size: 25px;
            font-weight: bold;
            padding: 0;
            margin-left: 10px;
        }

        .header-right { float: right; }
        .header a:hover { background-color: #ddd; color: black; }
        .header a.active { background-color: dodgerblue; color: white; }

        @media screen and (max-width: 768px) {
            .header a { float: none; display: block; text-align: left; }
            .header-right { float: none; }
        }

        /* --- 3. CONTACT FORM STYLES --- */

        .contact-container {
            width: 100%;
            max-width: 600px;
            /* Glassmorphism Effect */
            background: rgba(255, 255, 255, 0.05); 
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .contact-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .contact-subtitle {
            text-align: center;
            color: #ccc;
            margin-bottom: 30px;
            font-weight: 300;
        }

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

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #e0e0e0;
            font-weight: 500;
        }

        /* Input Styles - Shared Base Styles */
        .form-input, 
        .form-textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            appearance: none; /* Removes default OS styling */
            -webkit-appearance: none;
        }

        /* Add custom arrow ONLY to the select dropdown */
        select.form-input {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
            cursor: pointer;
        }

        .form-input:focus, 
        .form-textarea:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.1);
            border-color: dodgerblue;
            box-shadow: 0 0 10px rgba(30, 144, 255, 0.2);
        }

        /* Ensure dropdown options are readable on dark backgrounds */
        option {
            background-color: #0b1c2c; /* Dark blue background */
            color: white;
        }

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

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: dodgerblue;
            border-color: dodgerblue;
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(30, 144, 255, 0.4);
        }

        /* --- 4. FOOTER STYLES (Matching existing) --- */
        .site-footer {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            padding-top: 50px;
            width: 100%;
        }

        .footer-content {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-col { flex: 1; min-width: 250px; }
        .footer-col h3 { color: dodgerblue; margin-bottom: 20px; text-transform: uppercase; font-size: 1.2rem; }
        .footer-col p { color: #fff; line-height: 1.6; }

        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #fff; transition: color 0.3s; }
        .footer-links a:hover { color: dodgerblue; padding-left: 5px; }

        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover { background: dodgerblue; transform: translateY(-3px); }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.8);
            text-align: center;
            padding: 20px 0;
            margin-top: 50px;
            color: #888;
        }