<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #26A69A;
}

/* Header styles */
.main-header {
    background-color: white;
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 90px;
    height: 30px;
    object-fit: contain;
}

/* Container and heading styles */
.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo-section {
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    width: 100%;
}

.logo-section img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

h1 {
    color: #00796B;
    margin: 1rem 0 1.5rem 0;
    font-weight: 500;
    font-size: 1.5rem;
}

/* Portal cards grid */
.portal-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin-top: 1rem;
    padding: 0 2rem;
}

.portal-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.card-dot.black { background-color: #333; }
.card-dot.pink { background-color: #E91E63; }
.card-dot.green { background-color: #4CAF50; }
.card-dot.blue { background-color: #2196F3; }

.portal-card h2 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.portal-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.card-link {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
}

.card-link:hover {
    text-decoration: underline;
}

/* Base styles */
:root {
    --container-padding: 2rem;
    --card-gap: 2rem;
}

/* Responsive container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto 0;  /* Reduced from 150px to 100px */
    padding: 20px;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

.back-link {
    display: inline-block;
    text-decoration: none;
    color: #333;
    margin-bottom: 30px;
}

/* Responsive logo */
.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 80px;  /* Increased from 63px for more prominence */
    width: auto;
    transition: transform 0.2s ease;
}

/* Logo styling for ALL pages */
.logo img {
    max-width: 80px;  /* Even smaller, more professional size */
    height: auto;
    margin: 20px 0;
}

/* Responsive typography */
h1 {
    color: #00796B;
    margin: 1rem 0 1.5rem 0;
    font-weight: 500;
    font-size: 1.5rem;
    text-shadow: none;
}

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

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

select {
    height: 40px;
}

textarea {
    height: 100px;
    resize: vertical;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox input {
    margin-top: 4px;
}

button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

button:hover {
    background: #34495e;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #fdf1f1;
    border-radius: 4px;
}

.success-message {
    color: #28a745;
    font-size: 0.875rem;
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f1fdf1;
    border-radius: 4px;
}
/* Logo loading status */
.logo {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo.loaded {
    opacity: 1;
}

/* Footer container */
footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    color: #333; /* Darker text for better visibility */
    font-size: 14px;
    line-height: 1.6;
    background-color: #f5f5f5; /* Light background for better contrast */
    width: 100%;
}

footer p {
    color: #333 !important; /* Darker text for better visibility */
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 400;
    margin: 0.5rem auto;
    text-align: center !important;
}

footer a {
    color: #00796b !important; /* Teal color for links */
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.9;
    text-decoration: underline;
    color: #004d40 !important; /* Darker teal on hover */
}

.trademark {
    color: #555 !important; /* Darker color for better visibility */
    font-size: 0.75rem;
    max-width: 500px;
    margin: 0.5rem auto;
    font-weight: 400;
    text-align: center !important;
}

/* Ensure links open in new tab have proper security */
a[target="_blank"] {
    text-decoration: none;
    color: inherit;
}

a[target="_blank"]:hover {
    text-decoration: underline;
}

/* All direct children of footer */
footer &gt; * {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Copyright text */
footer p {
    color: #333 !important; /* Darker text for better visibility */
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 400;
    margin: 0.5rem auto;
    text-align: center !important;
}

/* Trademark text */
.trademark {
    color: #555 !important; /* Darker color for better visibility */
    font-size: 0.75rem;
    max-width: 500px;
    margin: 0.5rem auto;
    font-weight: 400;
    text-align: center !important;
}

/* Links */
footer a {
    color: #00796b !important; /* Teal color for links */
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.9;
    text-decoration: underline;
    color: #004d40 !important; /* Darker teal on hover */
}

/* Additional centering for any divs within footer */
footer div {
    text-align: center;
}

/* Specific style for MenuBee links */
.menubee-links a {
    color: #ffffff !important;
    font-weight: 700; /* Slightly bolder than regular footer text */
    margin: 0 0.3rem; /* Add some space between the links */
    display: inline-block;
    padding: 2px 4px; /* Small padding for better touch targets */
}

/* Ensure responsive layout */
@media (max-width: 1024px) {
    .portal-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .portal-card {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .portal-card {
        flex: 0 1 100%;
    }

    .logo-section {
        padding: 0.5rem 0;
        margin-bottom: 0.25rem;
    }

    h1 {
        margin: 0.5rem 0;
        font-size: 1.25rem;
    }

    .portal-cards {
        margin-top: 0.5rem;
        gap: 1rem;
    }
}

/* Add these new header styles at the top of your CSS file */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
    padding: 5px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.2s ease;
}

/* Force image display */
img.logo[src$="airlode-black-logo.png"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.main-nav {
    /* Placeholder for future menu */
    display: flex;
    align-items: center;
}

/* Adjust the existing container padding to account for header */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    text-align: center;
}

/* Adjust the h1 margin to work with new header */
h1 {
    color: #00796B;
    margin: 1rem 0 1.5rem 0;
    font-weight: 500;
    font-size: 1.5rem;
    text-shadow: none;
}

/* Add these new styles while keeping existing ones */
.verification-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.verification-form h1 {
    color: #333;
    font-size: 1.75rem;
    margin: 1rem 0 0.5rem;
    text-align: left;
}

.subtitle {
    color: #666;
    margin-bottom: 2rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.required {
    color: #e91e63;
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.helper-text {
    color: #666;
    font-size: 0.875rem;
}

.submit-btn {
    background: #25afa1;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
}

.submit-btn:hover {
    opacity: 0.9;
}

.back-link {
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.back-link:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

/* Error and Success Pages */
.error-container,
.success-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.error-container h1,
.success-container h1 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.error-text {
    color: #e74c3c;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 1.5rem 0;
}

.success-container p {
    color: #2ecc71;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 1.5rem 0;
}

.action-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.back-btn,
.restart-btn,
.home-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn {
    background-color: #f1f1f1;
    color: #333;
}

.restart-btn,
.home-btn {
    background-color: #26B99A;
    color: white;
}

.back-btn:hover {
    background-color: #e4e4e4;
}

.restart-btn:hover,
.home-btn:hover {
    background-color: #219a82;
}

/* Helper Text Styles */
.helper-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.helper-text a {
    color: #26B99A;
    text-decoration: none;
    font-weight: 500;
}

.helper-text a:hover {
    text-decoration: underline;
}

/* Loading States */
.verifying {
    background-color: #f8f9fa;
    color: #666;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .error-container,
    .success-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .back-btn,
    .restart-btn,
    .home-btn {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
}

/* Data Request Form Specific Styles */
.form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-content {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;  /* Force left alignment */
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    text-align: left;  /* Force left alignment */
}

.form-title {
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

/* Form Fields */
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    text-align: left;  /* Force left alignment for inputs */
}

/* Helper Text */
.helper-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: left;  /* Force left alignment */
}

/* Required Field Indicator */
.required {
    color: #e74c3c;
    margin-left: 2px;
}

.submit-btn {
    background-color: #26B99A;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #219a82;
}

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

/* Form Validation Styles */
.form-validation {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.validation-message {
    color: #e74c3c;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.validation-message.error {
    padding: 0.5rem;
    background-color: #fdf0ef;
    border-radius: 4px;
}

.required-fields {
    color: #666;
    font-size: 0.9rem;
}

/* Readonly Email Field */
input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

/* Data Request Error Page Specific Styles */
.error-help {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.help-text {
    color: #666;
    margin-bottom: 0.5rem;
}

.support-link {
    color: #26B99A;
    text-decoration: none;
    font-weight: 500;
}

.support-link:hover {
    text-decoration: underline;
}

/* Responsive Dropdown Styles */
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: white;
    height: 45px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    padding-right: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group select:hover {
    border-color: #26B99A;
}

.form-group select:focus {
    border-color: #26B99A;
    outline: none;
    box-shadow: 0 0 0 2px rgba(38, 185, 154, 0.1);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .form-group select {
        font-size: 16px; /* Prevent zoom on iOS */
        height: 50px; /* Larger touch target */
        padding: 0.8rem;
    }
    
    .form-container {
        padding: 1rem;
        margin: 1rem;
    }
}

/* Disabled state */
.form-group select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

/* Custom scrollbar for dropdown */
.form-group select::-webkit-scrollbar {
    width: 8px;
}

.form-group select::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.form-group select::-webkit-scrollbar-thumb {
    background: #26B99A;
    border-radius: 4px;
}

/* Mobile-specific adjustments */
@media screen and (max-width: 768px) {
    .main-header {
        padding: 1rem 0.5rem;
        /* Add safe area padding for iOS devices */
        padding-top: env(safe-area-inset-top);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .header-container {
        padding: 0 0.5rem;
    }

    .logo {
        height: 32px; /* Slightly smaller logo on mobile */
    }
}
/* Note: The viewport meta tag should be in the HTML head, not in CSS */

/* Global header styles */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
    padding: 5px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Content spacing for all pages */
.container {
    max-width: 1200px;
    margin: 150px auto 0;
    padding: 20px;
}

/* Error page specific styles */
.error-container {
    margin: 100px auto 0; /* Reduced from 150px to 100px */
    max-width: 600px;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.error-title {
    color: #333;
    margin-bottom: 20px;
}

.error-message {
    color: #dc3545;
    margin-bottom: 30px;
}

.error-support {
    color: #666;
    margin-top: 30px;
}

.error-support a {
    color: #00796b;
    text-decoration: none;
}

.error-support a:hover {
    text-decoration: underline;
}

/* Button styles */
.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.button {
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.button-primary {
    background-color: #00796b;
    color: white;
    border: none;
}

.button-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.button:hover {
    opacity: 0.9;
}

/* Add or update these styles */
.header {
    text-align: center;
    padding: 0;
    background-color: transparent;
    margin-bottom: 3rem;
    height: 200px; /* Fixed height for consistent spacing */
}

.logo-container {
    text-align: center;
    background-color: white;
    padding: 1rem;
    width: 100%;
    margin: 0;
    border-bottom-left-radius: 0; /* Remove border radius */
    border-bottom-right-radius: 0;
}

.logo {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.welcome-heading {
    color: #00796B;
    font-size: 1.75rem;
    font-weight: normal;
    margin-top: 2rem; /* Space after white header section */
    margin-bottom: 3rem;
}

.project-links a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.project-links a:hover {
    opacity: 0.8;
}

/* Add these to your existing styles */
.verify-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1600px;
    width: 95%;
    margin: 2rem auto;
    padding: 2rem;
}

.back-link {
    display: block;
    margin-bottom: 2rem;
    color: #666;
    text-decoration: none;
}

.back-link:hover {
    color: #333;
}

.verify-subtext {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
}

.required {
    color: #dc3545;
}

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    background-color: #006D5B;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #005446;
}

/* Adjust main content spacing */
.main-content {
    flex: 1;
    padding: 20px 0;
    min-height: calc(100vh - 200px);
    background-color: #26A69A; /* Match body background */
}

/* GDPR Form Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #26A69A;
}

.container {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
    padding: 0;
    flex: 1;
    box-sizing: border-box;
}

.welcome-heading {
    color: #003366;
    text-align: center;
    margin: 1rem 0 1.5rem 0;
    font-size: 24px;
    font-weight: 500;
}

.verify-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Responsive container */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
        width: 1400px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        max-width: 95%;
        padding: 0;
    }
    
    .verify-card {
        padding: 1.5rem;
    }
}

/* Form Elements */
.back-link {
    display: inline-block;
    text-decoration: none;
    color: #333;
    margin-bottom: 20px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 15px;
}

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

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    line-height: 1.5;
}

/* Select Styles */
select.form-control {
    height: 48px;
    appearance: none;
    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='currentColor' 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 10px center;
    background-size: 16px;
    padding-right: 30px;
}

select.form-control option {
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
}

/* Input Styles */
input[type="text"].form-control,
input[type="email"].form-control,
input[type="tel"].form-control {
    height: 48px;
}

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

/* Labels and Helper Text */
label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

small {
    display: block;
    color: #666;
    margin-top: 5px;
    font-size: 14px;
}

.required {
    color: #e74c3c;
}

/* Radio and Checkbox Styles */
.radio-group {
    margin-bottom: 15px;
    padding-left: 0;
    margin-top: 10px;
}

.radio-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    margin-left: 0;
}

.radio-container input[type="radio"] {
    margin-right: 12px;
    margin-top: 3px;
    min-width: 16px;
    height: 16px;
}

.radio-label {
    flex: 1;
    padding-top: 1px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 3px;
    min-width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.checkbox-label {
    flex: 1;
    padding-top: 1px;
    line-height: 1.6;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
    width: calc(100% - 28px);
    display: block;
    float: none;
    position: relative;
}

.checkbox-group {
    margin-bottom: 15px;
    padding-left: 0;
    margin-top: 10px;
    width: 100%;
}

/* Form Description and Notes */
.form-description {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #00796B;
}

.required-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

/* Buttons */
.button-primary {
    display: block;
    width: 100%;
    padding: 12px;
    background: #00796B;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 20px;
}

.button-primary:hover {
    background: #00695C;
}

/* Validation Messages */
.validation-message {
    color: #e74c3c;
    margin-top: 5px;
    font-size: 14px;
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    color: white;
}

.footer a {
    color: white;
    text-decoration: underline;
}

.trademark {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* File Upload Styles */
.file-upload-section {
    margin-bottom: 2rem;
}

.file-upload-container {
    border: 2px dashed #ccc;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    background-color: #f9f9f9;
    position: relative;
    cursor: pointer;
    margin-bottom: 1rem;
}

.file-preview {
    margin-top: 1rem;
    padding: 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: none;
}

.remove-file-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Status Messages */
.status-message {
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.status-message.success {
    background-color: #e0f2f1;
    color: #00796B;
    border: 1px solid #00796B;
}

.status-message.error {
    background-color: #fde7e7;
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.status-message.processing {
    background-color: #fff3e0;
    color: #f57c00;
    border: 1px solid #f57c00;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .verify-card {
        width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .verify-card {
        width: 100%;
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
    
    .verify-card {
        max-width: 1400px;
    }
}

.form-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: left;
    width: 100%;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.form-section {
    margin-bottom: 2rem;
    width: 100%;
    text-align: left;
}

.form-section-title {
    font-size: 1.5rem;
    color: #00796B;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00796B;
    text-align: left;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

/* Media queries for responsive design */
@media (max-width: 1600px) {
    .verify-card {
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .verify-card {
        max-width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .verify-card {
        width: 100%;
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .form-section-title {
        font-size: 1.25rem;
    }
}</pre></body></html>