/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

/* Header Navigation */
header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #005f9e;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.header-top a:hover {
    text-decoration: underline;
}

nav {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #005f9e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #005f9e;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #005f9e 0%, #0077be 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Intro Section */
.intro-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.intro-section h3 {
    font-size: 1.5rem;
    color: #005f9e;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
}

/* Form */
.form-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem 4rem;
}

.form-card {
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section:last-of-type {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    color: #005f9e;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
    font-weight: bold;
}

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

label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #005f9e;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

textarea#blogContent {
    min-height: 300px;
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

input[type="file"] {
    cursor: pointer;
}

.file-hint {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: italic;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-item label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #005f9e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #004578;
}

/* Consent & Info Boxes */
.consent-box {
    background-color: #e6f2ff;
    border-left: 4px solid #005f9e;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.consent-box p {
    font-size: 0.9375rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.info-box {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.info-box p {
    font-size: 0.9375rem;
    color: #78350f;
    margin: 0;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 50px 0 30px;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}
