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

:root {
    --primary-color: #3E1D59;
    --secondary-color: #3E1D59;
    --accent-color: #3E1D59;
    --text-color: #333;
    --light-bg: #ffffff;
    --lavender-bg: #f7f2fb;
    --pastel-lavender: #eee6f3;
    --white: #ffffff;
    --border-color: #3E1D59;
    --dark-bg: #3E1D59;
    --red-accent: #e53e3e;
}

body {
    font-family: 'Minerva Modern', 'Freight Text Pro', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    scroll-behavior: smooth;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Header - Centered Logo Layout */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2.3vw 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(62, 29, 89, 0.3);
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.logo-center a:hover .logo-image {
    transform: scale(1.05);
}

/* Navigation */
.nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: #f3e8ff;
    border-bottom: 2px solid #f3e8ff;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 1px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* Page Sections - Full Bleed */
.page-section {
    width: 100%;
    min-height: 1vh;
    position: relative;
}

.page-section.full-bleed {
    padding: calc(1vmax / 10) 0;
}

/* Fade-in Animation for Sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* First section appears immediately */
.page-section:first-of-type {
    opacity: 1;
    transform: translateY(0);
}

.content-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 4vw;
}

/* Section Themes */
.dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.light-bold {
    background-color: var(--lavender-bg);
    color: var(--text-color);
}

.bright-inverse {
    background-color: var(--white);
    color: var(--text-color);
}

/* Learn page questions */
.learn-page .question-text {
    color: var(--primary-color);
}

/* Learn page background */
.learn-page .page-section {
    background-color: var(--lavender-bg);
    color: var(--text-color);
}

/* Document links */
.doc-link {
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    color: inherit;
}

.doc-link:visited {
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    color: inherit;
}

.doc-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.learn-page .learn-hero {
    padding: 3rem 0 2.5rem;
    background-color: var(--lavender-bg);
    color: var(--primary-color);
    text-align: center;
}

.learn-page .learn-hero .question-text {
    color: var(--primary-color);
}

.learn-page .tips-box {
    background: var(--white);
    border: 1px solid #eee7f4;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    padding: 1.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.learn-page .tips-box h2 {
    margin-bottom: 1rem;
}

.learn-page .tips-box p {
    margin-bottom: 1.25rem;
}

.learn-page .tips-box ul {
    padding-left: 1.2rem;
    line-height: 1.7;
}

.learn-page .tips-box li {
    margin-bottom: 0.75rem;
}

/* Image Containers */
.image-container {
    text-align: center;
    width: 100%;
}

.image-container.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Title Banner Section */
.title-banner-container {
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 150px;
}

.butterfly-overlay {
    width: 250px;
    height: auto;
    position: absolute;
    top: 0;
    z-index: 5;
    /* Removed animation - butterfly is static */
}

.title-banner {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: block;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Mission Section */

.mission-section {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('leaf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    opacity: 1;
}

.mission-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(62, 29, 89, 0.3), rgba(62, 29, 89, 0.2));
    z-index: 0;
}

.mission-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
}

/* Peace Section */
.peace-section-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.peace-section-content h3 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.peace-section-content h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .peace-section-content h4 {
        font-size: 1rem;
    }
}

.section-divider {
    width: 60%;
    margin: 2rem auto;
    border: none;
    border-top: 1px solid var(--border-color);
}

.profile-and-badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 2.5rem 0 2rem;
}

.profile-image-container {
    flex: 0 0 auto;
}

.profile-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    box-shadow: 0 6px 18px rgba(62, 29, 89, 0.25);
}

.irs-badge-container {
    flex: 0 0 auto;
}

.irs-badge-frame {
    padding: 1.1rem 1.4rem;
    border: 1px solid #cfe2e7;
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.irs-badge {
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.irs-title {
    font-size: 1.35rem;
    margin: 1.5rem 0 1.8rem;
    color: var(--text-color);
    font-weight: 600;
}

.warnings {
    text-align: center;
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.warnings p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 700;
}

.warnings .warning-emphasis {
    font-style: normal;
    font-weight: 900;
}

/* Enrolled Agents Box */
.enrolled-agents-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 12% 12%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.enrolled-agents-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.enrolled-agents-box h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--white);
}

.enrolled-agents-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0;
    color: var(--white);
}

.enrolled-agent-image-wrapper {
    position: relative;
    display: inline-block;
    margin: 2rem auto;
    max-width: 300px;
}

.enrolled-token-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Learn Page */
.learn-content {
    background-color: var(--white);
    color: var(--text-color);
    border-radius: 22px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.learn-hero {
    background-color: var(--lavender-bg);
    color: var(--primary-color);
    padding: 6vw 0;
    text-align: center;
}

.learn-content {
    border: 1px solid #eee7f4;
}

.learn-hero-box {
    background-color: var(--lavender-bg);
    color: var(--primary-color);
    border: 1px solid #eee7f4;
    box-shadow: none;
}

.learn-content h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.learn-content {
    border: 1px solid #eee7f4;
}
.learn-content h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.learn-content p {
    margin: 1rem 0;
    line-height: 1.8;
}

.learn-list {
    margin: 0.5rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.learn-list li {
    margin: 0.4rem 0;
}

.learn-footer {
    margin-top: 2rem;
    font-weight: 600;
}

/* Services Page */
.services-hero {
    position: relative;
    width: 100%;
    min-height: 280px;
    max-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lavender-bg);
    text-align: center;
}

.services-hero-overlay h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    letter-spacing: 0.4rem;
    font-weight: 600;
}

.services-subtitle {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.6rem;
    letter-spacing: 0.08rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 220px;
    }

    .services-hero-overlay h1 {
        font-size: 2rem;
        letter-spacing: 0.25rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.05rem;
    }
}

.services-section {
    background-color: var(--lavender-bg);
    padding: 6vw 0;
}

.services-wrapper {
    max-width: 1400px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(62, 29, 89, 0.12);
    text-align: center;
}

.service-card h2 {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: underline;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.service-card.wide {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.wide {
        grid-column: span 1;
    }
}

/* Tax Extensions Box */
.tax-extensions-box {
    background-color: var(--white);
    border-radius: 22px;
    padding: 12% 12%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(62, 29, 89, 0.2);
}

/* Contact Page */

.contact-hero {
    background-color: var(--lavender-bg);
    background-image: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
    padding: 3rem 1.5rem;
}

.contact-hero-inner h1 {
    font-size: 2.4rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hero-inner p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--primary-color);
}

.contact-hero-inner a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 240px;
    }

    .contact-hero-inner h1 {
        font-size: 2rem;
        letter-spacing: 0.12rem;
    }

    .contact-hero-inner p {
        font-size: 1rem;
    }
}

.contact-section {
    background-color: var(--pastel-lavender);
    padding: 6vw 0;
}

.contact-content {
    max-width: 1100px;
    text-align: center;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h2 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.contact-block p {
    margin: 0.8rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 500;
}

.contact-emphasis {
    color: var(--secondary-color);
    font-weight: 700;
}

.thin-divider {
    width: 60%;
    border-top-color: var(--border-color);
}

.contact-location-image {
    margin: 2rem auto 0;
    max-width: 620px;
}

.location-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    display: block;
}

.map-embed {
    margin: 2rem auto 0;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.map-embed iframe {
    border: 0;
    width: 100%;
    height: 320px;
    display: block;
}

@media (max-width: 640px) {
    .contact-section {
        padding: 8vw 0;
    }

    .map-embed iframe {
        height: 260px;
    }
}

/* Checklist Page */
.floating-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(340px, 38vw, 520px);
    background: var(--lavender-bg);
    isolation: isolate;
}

.floating-hero::before,
.floating-hero::after {
    content: none;
}

@keyframes float-blobs {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(8%, -6%, 0) scale(1.05); }
    100% { transform: translate3d(-6%, 10%, 0) scale(1.1); }
}

@keyframes float-blobs-2 {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(-6%, 6%, 0) scale(1.08); }
    100% { transform: translate3d(5%, -8%, 0) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
    .floating-hero::before,
    .floating-hero::after {
        animation: none;
    }

    .floating-hero {
        animation: none;
    }
}

@keyframes vertical-gradient-shift {
    0% { background-position: 0 0; }
    100% { background-position: 0 40%; }
}

.checklist-hero {
    background: transparent;
    color: var(--primary-color);
    padding: 6vw 0;
    position: relative;
    z-index: 1;
}

.checklist-hero-inner {
    text-align: center;
}

.checklist-hero h1 {
    font-size: 2.4rem;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-sub {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    max-width: 900px;
    margin: 0 auto;
    color: var(--primary-color);
}

.hero-sub.hero-sub-discount {
    margin-top: 1.6rem;
}

.doc-box {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    width: 70%;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--secondary-color);
    letter-spacing: 0.12em;
    font-size: 1.8rem;
    text-transform: uppercase;
    background: var(--white);
}

.doc-box span {
    display: inline-block;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.doc-col h2 {
    color: var(--secondary-color);
    letter-spacing: 0.08em;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.doc-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0 auto 1rem;
}

.doc-col ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--text-color);
    text-align: left;
}

.doc-col li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.doc-col a {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.doc-col a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.checklist-body {
    background-color: var(--pastel-lavender);
    padding: 6vw 0;
}

.body-inner {
    max-width: 1100px;
    text-align: center;
}

.body-block {
    margin-bottom: 2rem;
}

.body-inner .body-block:last-child {
    margin-bottom: 1rem;
}

.body-block h2 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.body-block h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
}

.body-block p {
    margin: 0.6rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.notice-block {
    background: var(--white);
    padding: 1.6rem;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.checklist-docs {
    background-color: var(--pastel-lavender);
    color: var(--text-color);
    padding: 3vw 0 6vw;
}

/* About Page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4vw;
}

.about-hero {
    background-color: var(--lavender-bg);
    color: var(--primary-color);
    padding: 5vw 0 4vw;
}

.about-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.headshot-card {
    display: flex;
    justify-content: center;
}

.headshot-image {
    width: 405px;
    height: 405px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #f3e8ff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.about-hero-text .eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.about-hero-text {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.about-hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    text-align: center;
}

.about-hero-text .role {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.about-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    margin: 0 auto 1rem;
    justify-content: center;
    text-align: center;
}

.about-badge-img {
    width: 118px;
    height: auto;
}

.about-badge span {
    display: block;
    text-align: center;
}

.about-intro {
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.7;
    color: #f3e8ff;
}

.about-section {
    padding: 4.5vw 0;
    background-color: var(--white);
}

.about-section:nth-of-type(even) {
    background-color: var(--lavender-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    letter-spacing: 0.05em;
}

.about-grid.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
}

.about-card {
    background: var(--white);
    padding: 1.6rem;
    border-radius: 12px;
    border: 1px solid #eee7f4;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.about-card h3 {
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.about-card ul {
    list-style: disc;
    padding-left: 1.1rem;
    line-height: 1.6;
}

.about-card li {
    margin: 0.35rem 0;
    color: var(--text-color);
}

.about-card li::marker {
    color: var(--secondary-color);
}

.about-card strong {
    color: var(--secondary-color);
}

.about-columns {
    columns: 2;
    column-gap: 2rem;
    padding-left: 1.2rem;
}

.quote-card {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(62, 29, 89, 0.25);
}

/* News Page */
.news-hero {
    background-color: var(--lavender-bg);
    color: var(--primary-color);
    padding: 5vw 0;
    text-align: center;
}

.news-hero h1 {
    letter-spacing: 0.08em;
    font-size: 2.1rem;
    color: var(--primary-color);
}

.news-section {
    background-color: var(--pastel-lavender);
    padding: 6vw 0;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    color: var(--text-color);
}

.news-block {
    background: var(--white);
    padding: 1.6rem;
    border-radius: 12px;
    border: 1px solid #eee7f4;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.news-block h2 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.news-block p,
.news-block li {
    line-height: 1.7;
    margin: 0.5rem 0;
}

.news-block ul {
    list-style: disc;
    padding-left: 1.2rem;
}

.news-block a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.news-contact {
    text-align: center;
    margin-top: 0.5rem;
    color: var(--secondary-color);
}

.news-block.announcement {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.news-block.announcement h2,
.news-block.announcement p,
.news-block.announcement strong {
    color: var(--white);
}

@media (max-width: 900px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid.two-col {
        grid-template-columns: 1fr;
    }

    .about-columns {
        columns: 1;
    }
}

@media (max-width: 1024px) {
    .doc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .doc-grid {
        grid-template-columns: 1fr;
    }
}

.tax-extensions-box p {
    font-size: 1.1rem;
    margin: 1rem 0;
    line-height: 1.8;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Dropoff Section */
.dropoff-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.dropoff-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dropoff-content h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.dropoff-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0;
    text-align: justify;
}

.checklist-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(62, 29, 89, 0.3);
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 29, 89, 0.4);
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
}

/* Footer */
.footer-section {
    background-color: var(--primary-color);
    padding: calc(10vmax / 10) 0;
    text-align: center;
    min-height: 10vh;
    color: var(--white);
}

.footer-section p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.footer-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

/* Section Divider */
.has-divider {
    position: relative;
    padding-bottom: 6vw;
}

.has-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6vw;
    background: linear-gradient(to bottom, transparent 0%, var(--light-bg) 50%, var(--light-bg) 100%);
    clip-path: polygon(0 50%, 25% 50%, 50% 0%, 75% 50%, 100% 50%, 100% 100%, 0 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        padding: 1rem 20px;
    }

    .logo-center {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
    }

    .nav-list {
        flex-direction: column;
        position: fixed;
        left: -100%;
        top: 80px;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        margin: 1rem 0;
    }

    .nav-list a {
        padding: 1rem;
        display: block;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .profile-and-badge {
        flex-direction: column;
        align-items: center;
    }

    .checklist-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .content-wrapper {
        padding: 6vw;
    }

    .mission-quote {
        font-size: 1.2rem;
    }

    .title-banner-container {
        padding-top: 120px;
    }

    .butterfly-overlay {
        width: 180px;
        top: 0;
    }

    .title-banner {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
    }

    .peace-section-content h3 {
        font-size: 1.5rem;
    }

    .peace-section-content h4 {
        font-size: 1rem;
    }

    .enrolled-agents-box h3,
    .dropoff-content h3 {
        font-size: 1.5rem;
    }

    .title-banner-container {
        padding-top: 100px;
    }

    .butterfly-overlay {
        width: 150px;
        top: 0;
    }

    .title-banner {
        margin-top: 50px;
    }
}
