/* Error styles for form validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border: 2px solid #e74c3c !important;
    background: #fff0f0 !important;
}
.form-group .error-message {
    color: #e74c3c;
    font-size: 0.95em;
    margin-top: 2px;
    display: none;
}
.form-group.error .error-message {
    display: block;
}
/* --- Homepage Nav & Footer Styles (Override, copied from AboutUsLCA.css) --- */
.nav-btn {
    background: rgb(116, 197, 181) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(30,60,114,0.06) !important;
}
.nav-btn:hover, .nav-btn.lca-login:hover {
    background: #1e3c72 !important;
    color: rgb(116, 197, 181) !important;
    box-shadow: 0 4px 16px rgba(30,60,114,0.13) !important;
}
.nav-btn.lca-login {
    background: rgb(116, 197, 181) !important;
    color: #fff !important;
    border: none !important;
}
.header {
    background: white;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(30,60,114,0.10);
    min-height: 68px;
    height: 68px;
}
.nav-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 68px;
}
/* --- Force homepage logo image style --- */
.logo img {
    height: 32px !important;
    border-radius: 6px !important;
    background: #fff !important;
    padding: 1px !important;
    box-shadow: 0 2px 8px rgba(30,60,114,0.08) !important;
}
.nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}
/* --- End Homepage Nav & Footer Styles (Override) --- */
/* General Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: url('https://mps-cdn-dev.s3.eu-west-1.amazonaws.com/assets/images/VS-MPS-Home.gif') center top/cover no-repeat fixed;
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.5;
            color: #333;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(20, 30, 40, 0.72);
            z-index: 0;
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 80px auto 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }


        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #2c5aa0;
        }

        .nav-links .login-btn {
            background-color: #2c5aa0;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .nav-links .login-btn:hover {
            background-color: #1e3d6f;
            color: white;
        }

        /* Main Content Styles */
        main {
            padding: 3rem 0;
            min-height: calc(100vh - 200px);
        }

        .contact-section {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        /* Left Column Styles */
        .left-column {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .left-column h1 {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 2rem;
            font-weight: 600;
            line-height: 1.2;
        }

        .clipboard-image {
            max-width: 300px;
            width: 100%;
            height: auto;
            margin-top: 2rem;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
        }

        /* Right Column (Form) Styles */
        .right-column {
            padding: 3rem;
            background-color: #fff;
        }

        .form-container {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .required {
            color: #e74c3c;
        }

        input[type="text"],
        input[type="email"],
        select,
        textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #2c5aa0;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }

        .form-group.error input,
        .form-group.error select,
        .form-group.error textarea {
            border-color: #e74c3c;
            background-color: #fdf2f2;
        }

        .form-group.error .error-message {
            display: block;
        }

        .submit-btn {
            background: rgb(116, 197, 181);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .submit-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Footer Styles */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #7fb069;
        }

        .footer-column p {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            opacity: 0.7;
        }

        /* Success Message */
        .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .left-column {
                padding: 2rem;
            }

            .left-column h1 {
                font-size: 2rem;
            }

            .right-column {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .left-column,
            .right-column {
                padding: 1.5rem;
            }

            .left-column h1 {
                font-size: 1.5rem;
            }
        }

        /* Animation */
        .contact-section {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }