/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0D4987;
    background: linear-gradient(135deg, #F8FAFC 0%, #E8F4F8 50%, #F0F7FF 100%);
    min-height: 100vh;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #0D4987;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(13, 73, 135, 0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D4987;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #0D4987;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #B8CADD;
    color: #0D4987;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #0D4987;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #B8CADD 0%, #E8F4F8 50%, #F0F7FF 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(13, 73, 135, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(184, 202, 221, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #0D4987;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #0D4987;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: #0D4987;
    color: #FFFFFF;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 73, 135, 0.3);
}

.cta-button:hover {
    background-color: #0A3A6B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 73, 135, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heartrate-animation {
    position: relative;
    width: 300px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.heartrate-svg {
    width: 100%;
    height: 100%;
}

.heartrate-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: heartbeat 3s ease-in-out infinite;
}

.heartrate-dot {
    animation: dot-move 3s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        stroke-dashoffset: 600;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -600;
        opacity: 0;
    }
}

@keyframes dot-move {
    0% {
        cx: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        cx: 300;
        opacity: 1;
    }
    100% {
        cx: 300;
        opacity: 0;
    }
}

/* ===== MISSION SECTION ===== */
.mission {
    padding: 80px 0;
    background: linear-gradient(45deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(184, 202, 221, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.mission-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #000000;
    line-height: 1.8;
}

/* ===== FEATURED PREVIEW ===== */
.featured-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #B8CADD 0%, #A8BFD8 50%, #B8CADD 100%);
    position: relative;
}

.featured-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(13, 73, 135, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 202, 221, 0.3);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.preview-card h3 {
    color: #0D4987;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.preview-card p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #0D4987;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0A3A6B;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #B8CADD 0%, #E8F4F8 50%, #F0F7FF 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 73, 135, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0D4987;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #000000;
}

/* ===== ARTICLES PAGE ===== */
.articles-main {
    min-height: 100vh;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.article-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(184, 202, 221, 0.2);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    background-color: #B8CADD;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 3rem;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0D4987;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-summary {
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.read-more-link {
    color: #0D4987;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== ARTICLE MODAL ===== */
.article-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background-color: #FFFFFF;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #0D4987;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

/* ===== INDIVIDUAL ARTICLE PAGE ===== */
.article-main {
    padding-top: 70px;
}

.article-header {
    padding: 2rem 0;
    border-bottom: 1px solid #B8CADD;
}

.back-link {
    color: #0D4987;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

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

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.article-image-container {
    margin: 2rem 0;
    text-align: center;
}

.article-placeholder-image {
    background-color: #B8CADD;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-caption {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.article-text {
    line-height: 1.8;
}

.article-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0D4987;
    margin-bottom: 2rem;
}

.article-text h2 {
    color: #0D4987;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.article-text h3 {
    color: #0D4987;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.article-text p {
    margin-bottom: 1.5rem;
    color: #000000;
}

.article-text ul,
.article-text ol {
    margin: 1rem 0 1.5rem 2rem;
    color: #000000;
}

.article-text li {
    margin-bottom: 0.5rem;
}

.article-text blockquote {
    border-left: 4px solid #0D4987;
    margin: 2rem 0;
    padding: 1rem 2rem;
    background-color: #B8CADD;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #0D4987;
}

.article-footer {
    border-top: 1px solid #B8CADD;
    padding-top: 2rem;
    margin-top: 3rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    background-color: #B8CADD;
    color: #0D4987;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-navigation {
    text-align: center;
}

.nav-button {
    display: inline-block;
    background-color: #0D4987;
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #0A3A6B;
    transform: translateY(-2px);
}

/* ===== TEAM PAGE ===== */
.image-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-main {
    padding-top: 70px;
    min-height: 100vh;
}

/* ===== APPLY PAGE ===== */
.apply-main {
    padding-top: 70px;
    min-height: 100vh;
}

.apply-section {
    padding: 3rem 0;
}

.apply-content {
    max-width: 1000px;
    margin: 0 auto;
}

.apply-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 15px;
}

.apply-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0D4987;
    margin-bottom: 1rem;
}

.apply-intro-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.position-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(13, 73, 135, 0.1);
    border: 1px solid rgba(184, 202, 221, 0.3);
}

.position-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D4987;
    margin-bottom: 1.5rem;
    text-align: center;
}

.position-requirements {
    list-style: none;
    padding: 0;
}

.position-requirements li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.position-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0D4987;
    font-weight: bold;
}

.position-requirements li:last-child {
    border-bottom: none;
}

.apply-form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(13, 73, 135, 0.1);
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0D4987;
    margin-bottom: 1rem;
    text-align: center;
}

.form-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.google-form-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, #B8CADD 0%, #A8BFD8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.form-placeholder-content {
    max-width: 400px;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-placeholder-content h4 {
    color: #0D4987;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-placeholder-content p {
    color: #333;
    margin-bottom: 0.5rem;
}

.placeholder-instructions {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.apply-footer {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 12px;
}

.apply-note {
    color: #666;
    line-height: 1.6;
}

.apply-link {
    color: #0D4987;
    font-weight: 600;
    text-decoration: none;
}

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

/* ===== TEAM SECTION ===== */
.team-section {
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(13, 73, 135, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 73, 135, 0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-photo {
    font-size: 3rem;
    color: #0D4987;
}

.team-photo {
  width: 160px; /* adjust as needed */
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* center the whole photo container */
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-school {
  font-size: 0.9rem;
  color: #555; /* soft gray */
  margin-top: 4px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0D4987;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* ===== COMING SOON SECTION ===== */
.coming-soon-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 15px;
    margin: 2rem 0;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0D4987;
    margin-bottom: 1rem;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-main {
    min-height: 100vh;
}

.about-mission {
    padding: 3rem 0;
    text-align: center;
}

.founders {
    padding: 3rem 0;
    background: linear-gradient(135deg, #B8CADD 0%, #A8BFD8 50%, #B8CADD 100%);
    position: relative;
}

.founders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(13, 73, 135, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.founder-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 202, 221, 0.2);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.founder-image {
    margin-bottom: 1.5rem;
}

.founder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-name {
    color: #0D4987;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #0D4987;
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-bio {
    color: #000000;
    line-height: 1.6;
}

.get-involved {
    padding: 3rem 0;
}

.involvement-content {
    max-width: 800px;
    margin: 0 auto;
}

.involvement-text {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
    line-height: 1.7;
}

.involvement-ways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.involvement-item {
    background: linear-gradient(135deg, #B8CADD 0%, #A8BFD8 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(13, 73, 135, 0.1);
    transition: all 0.3s ease;
}

.involvement-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.involvement-item h3 {
    color: #0D4987;
    margin-bottom: 1rem;
    font-weight: 600;
}

.involvement-item p {
    color: #000000;
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #B8CADD 0%, #A8BFD8 100%);
    border-radius: 12px;
    border: 1px solid rgba(13, 73, 135, 0.1);
}

.involvement-link {
    color: #0D4987;
    font-weight: 600;
    text-decoration: none;
}

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

/* ===== CONTACT PAGE ===== */
.contact-main {
    min-height: 100vh;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 0;
}

.contact-info h2 {
    color: #0D4987;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: linear-gradient(135deg, #B8CADD 0%, #A8BFD8 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(13, 73, 135, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-method h3 {
    color: #0D4987;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-method p {
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.contact-form-section h2 {
    color: #0D4987;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-description {
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #0D4987;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #B8CADD;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0D4987;
}

.submit-button {
    background-color: #0D4987;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #0A3A6B;
    transform: translateY(-2px);
}

.form-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #B8CADD;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #0D4987;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0D4987;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.legal-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}
