/* ===================================
   CSS Custom Properties (Variables)
   =================================== */
:root {
    /* Logica Security Brand Colors - Standard Set for All Future Changes
       Primary Dark: #161728 - Headings, navigation, footer
       Primary Blue: #21759b - Primary buttons, links, borders
       Accent Blue: #0195ff - Hover states, active links, highlights
       Light Gray: #dddfe3 - Borders, dividers
       Off-White: #ededed - Section backgrounds, subtle highlights
       Dark Gray: #4c4c4c - Body text, secondary text
    */
    --primary-dark: #161728;
    --primary-blue: #21759b;
    --accent-blue: #0195ff;
    --light-gray: #dddfe3;
    --off-white: #ededed;
    --dark-gray: #4c4c4c;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Typography */
    --font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --header-height: 64px;
    --section-padding: 60px 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-base: 300ms ease;
    --transition-slow: 800ms ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 8px rgba(22, 23, 40, 0.08);
    --shadow-lg: 0 4px 12px rgba(22, 23, 40, 0.12);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
        --section-padding: 80px 0;
    }
}

/* ===================================
   CSS Reset & Base Styles
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 32px;
    font-weight: 600;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 500;
}

h4 {
    font-size: 20px;
    font-weight: 500;
}

@media (min-width: 768px) {
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 28px;
    }
}

/* ===================================
   Layout
   =================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* Obligations Section - Clean white background */
#obligations.section-gray {
    background: var(--off-white);
    position: relative;
}

/* Resources/Timeline Section - Clean white background */
#resources.section {
    background: var(--white);
    position: relative;
}

/* Self-Assessment Section - Clean off-white background */
.section-gray:not(#obligations):not(#help):not(#contact) {
    background: var(--off-white);
}

/* Self-Assessment Section - Reduce top padding */
section:has(.self-assessment) {
    padding-top: 20px;
}

/* Understanding/Requirements Section - Clean white background */
#understanding.section {
    background: var(--white);
    position: relative;
    padding-top: 20px;
}

/* Services Section - Clean off-white background */
#help.section-gray {
    background: var(--off-white);
    position: relative;
}

/* Contact Section - Clean white background */
#contact.section-gray {
    background: var(--white);
    position: relative;
}

/* About Section - Clean off-white background */
#about.section {
    background: var(--off-white);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.section-cta {
    text-align: center;
    margin-top: 24px;
}

/* ===================================
   Grid System
   =================================== */
.grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid {
        gap: 48px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    min-width: 44px;
    min-height: 44px;
}

.btn:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

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

.btn-primary:hover {
    background-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:disabled {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.btn-secondary:active {
    transform: scale(0.98);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

@media (min-width: 768px) {
    .btn-full {
        width: auto;
    }
}

/* ===================================
   Header / Navigation
   =================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-dark);
    height: var(--header-height);
    transition: box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav-logo a {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    transition: opacity var(--transition-base);
    display: block;
}

.logo-image:hover {
    opacity: 0.8;
}

@media (min-width: 1024px) {
    .logo-image {
        height: 70px;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: background-color var(--transition-base);
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: transform var(--transition-base);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-base);
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    color: var(--white);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
    z-index: 1001;
}

.nav-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.nav-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    transition: color var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
}

.nav-cta {
    margin-top: 32px;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background-color: transparent;
        gap: 16px;
        margin: 0 20px;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .nav-close {
        display: none;
    }
    
    .nav-list {
        flex-direction: row;
        gap: 16px;
        flex-wrap: nowrap;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 6px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .nav-cta {
        margin-top: 0;
        margin-left: 0;
        padding: 8px 16px;
        font-size: 14px;
        flex-shrink: 0;
    }
}

@media (min-width: 1200px) {
    .nav-list {
        gap: 32px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .nav-cta {
        margin-left: 0;
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
}

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

.hero-image-wrapper {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 4px 12px rgba(33, 117, 155, 0.2));
}

@media (min-width: 768px) {
    .hero-image {
        max-width: 280px;
    }
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-divider {
    border: none;
    border-top: 1px solid var(--light-gray);
    width: 100px;
    margin: 24px auto;
    opacity: 0.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        gap: 20px;
    }
}

/* ===================================
   Cards
   =================================== */
.card {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 32px;
    margin-right: 12px;
    flex-shrink: 0;
}

.card-title {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.card-description {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.card-list {
    list-style: none;
    margin: 16px 0;
}

.card-list li {
    font-size: 14px;
    color: var(--dark-gray);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent-blue);
    font-weight: 500;
    transition: color var(--transition-base);
}

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

/* ===================================
   Features
   =================================== */
.feature {
    text-align: center;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.feature-title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
}

.feature-description {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===================================
   Timeline
   =================================== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .timeline {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        padding: 0;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: var(--light-gray);
        z-index: 0;
    }
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.timeline-marker {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--light-gray);
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.timeline-past .timeline-dot {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.timeline-now .timeline-dot {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.timeline-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(1, 149, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(1, 149, 255, 0);
    }
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.timeline-label {
    font-size: 14px;
    color: var(--dark-gray);
}

.timeline-status {
    margin-top: 8px;
    font-size: 20px;
}

/* ===================================
   Statistics
   =================================== */
.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background-color: var(--white);
    border-left: 4px solid var(--primary-blue);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-left-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.5;
}

/* ===================================
   Contact Form
   =================================== */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 32px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    background-color: var(--white);
    transition: all var(--transition-base);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(1, 149, 255, 0.1);
}

.form-input.error {
    border-color: var(--error);
}

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

.form-error {
    display: none;
    font-size: 14px;
    color: var(--error);
    margin-top: 6px;
}

.form-error.active {
    display: block;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-required {
    align-items: center;
}

.form-checkbox {
    margin-top: 2px;
    min-width: 18px;
    min-height: 18px;
    cursor: pointer;
}

.privacy-link {
    color: var(--accent-blue);
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--primary-blue);
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid var(--success);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
    animation: successFadeIn 0.6s ease-out;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: successBounce 0.8s ease-out 0.3s both;
}

@keyframes successBounce {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success h3 {
    margin-bottom: 16px;
    color: var(--success);
    font-size: 28px;
    font-weight: 600;
}

.success-message {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.success-details {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.success-details p {
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 600;
}

.success-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-details li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--dark-gray);
}

.success-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.contact-info {
    margin-top: 24px;
    padding: 16px;
    background: var(--primary-blue);
    color: white;
    border-radius: 8px;
    font-weight: 500;
}

.form-success a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.form-success a:hover {
    color: var(--accent-blue);
}

#reset-form-btn {
    margin-top: 24px;
    background: var(--light-gray);
    color: var(--primary-dark);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

#reset-form-btn:hover {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 23, 40, 0.2);
}

.contact-alternative {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--dark-gray);
}

.contact-alternative a {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* ===================================
   About Section
   =================================== */
.about-content {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0.95;
}

@media (min-width: 768px) {
    .about-image {
        max-width: 300px;
    }
}

.about-text {
    text-align: center;
}

@media (min-width: 768px) {
    .about-text {
        text-align: center;
    }
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--light-gray);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--light-gray);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-note {
    font-size: 12px;
    font-style: italic;
    color: var(--dark-gray);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

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

.footer-logo-image {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.footer-logo-image:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
    
    .footer-logo {
        order: -1;
    }
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--light-gray);
    transition: color var(--transition-base);
}

.social-link:hover {
    color: var(--accent-blue);
}

/* ===================================
   Modal
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 23, 40, 0.75);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    z-index: 1;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 28px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base);
}

.modal-close:hover {
    color: var(--primary-dark);
}

.modal-title {
    margin-bottom: 8px;
    font-size: 24px;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.modal-form {
    /* Inherits form styles */
}

.modal-success {
    text-align: center;
    padding: 24px 0;
}

.modal-success .success-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

/* ===================================
   Utilities
   =================================== */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

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

.skip-to-main:focus {
    top: 0;
}

/* Loading state */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* ===================================
   Enhanced Obligations Section Styles
   =================================== */

/* Introductory Text */
.intro-text {
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: center;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.intro-urgent {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-dark);
}

/* Who's Affected Introduction */
.who-affected-intro {
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: center;
}

.who-affected-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
}

/* Bill Status Tracker */
.bill-status-tracker {
    max-width: var(--container-max-width);
    margin: 0 auto 40px;
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.bill-status-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 24px;
    text-align: center;
}

.bill-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.bill-status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    border-radius: 8px;
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    transition: var(--transition-base);
}

.bill-status-item.bill-status-active {
    background: #eff6ff;
    border-color: var(--accent-blue);
    border-width: 2px;
}

.bill-status-item.bill-status-complete {
    background: #f0fdf4;
    border-color: var(--success);
}

.bill-status-item.bill-status-pending {
    background: var(--off-white);
    border-color: var(--light-gray);
}

.bill-status-icon {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
    color: var(--success);
}

.bill-status-item.bill-status-active .bill-status-icon {
    color: var(--accent-blue);
}

.bill-status-item.bill-status-pending .bill-status-icon {
    color: var(--dark-gray);
}

.bill-status-content {
    width: 100%;
    text-align: center;
}

.bill-status-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
    text-align: center;
}

.bill-status-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 0;
    text-align: left;
}

.bill-status-list li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    text-indent: 0;
}

.bill-status-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
    line-height: 1.7;
}

.bill-status-item.bill-status-active .bill-status-list li:before {
    color: var(--accent-blue);
}

.bill-status-list li:last-child {
    margin-bottom: 0;
}

.bill-status-content p {
    font-size: 14px;
    color: var(--dark-gray);
    margin: 0;
}

.bill-status-note {
    font-size: 14px;
    color: var(--dark-gray);
    text-align: center;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

@media (max-width: 767px) {
    .bill-status-tracker {
        padding: 24px 16px;
    }
    
    .bill-status-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bill-status-item {
        padding: 20px;
    }
    
    .bill-status-title {
        font-size: 20px;
    }
    
    .bill-status-content h4 {
        font-size: 16px;
    }
    
    .bill-status-list li {
        font-size: 13px;
    }
}

/* Category Cards Grid */
.grid-categories {
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .grid-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Expandable Category Cards */
.category-card {
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    overflow: hidden;
}

.category-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.category-card-header {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.category-card-header:hover {
    background-color: rgba(33, 117, 155, 0.05);
}

.category-card-header:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: -2px;
}

.category-card-header .card-header {
    margin-bottom: 0;
}

.category-card-header .card-description {
    display: block;
    margin-top: 8px;
}

.expand-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 16px;
    color: var(--primary-blue);
    transition: transform var(--transition-base);
}

.category-card-header[aria-expanded="true"] .expand-icon {
    transform: rotate(180deg);
}

/* Category Details (Expanded Content) */
.category-details {
    padding: 0 24px 24px;
    border-top: 1px solid var(--light-gray);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
    }
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.status-mandatory {
    background-color: var(--error);
    color: var(--white);
}

.status-amber {
    background-color: var(--warning);
    color: var(--white);
}

.status-success {
    background-color: var(--success);
    color: var(--white);
}

/* Category Sections */
.category-section {
    margin-bottom: 24px;
}

.category-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.category-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

.category-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    padding: 16px;
    border-radius: 4px;
    margin-top: 20px;
}

.category-warning h4 {
    color: var(--warning);
    margin-bottom: 12px;
}

.category-note {
    font-size: 14px;
    color: var(--dark-gray);
    font-style: italic;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Timeline Urgency Section */
.timeline-urgency {
    margin: 32px 0;
    padding: 32px 32px;
    background-color: var(--white);
    border-radius: 12px;
}

.timeline-cards {
    margin-bottom: 24px;
    padding: 0 16px;
}

.timeline-card {
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.timeline-card-urgent {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: var(--warning);
    border-width: 3px;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.timeline-card-urgent:hover {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.timeline-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.timeline-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.timeline-card p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Callout Box */
.callout-box {
    background-color: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--warning);
    border-radius: 12px;
    padding: 32px;
    margin-top: 32px;
    text-align: center;
}

.callout-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 20px;
    text-align: center;
}

.callout-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
}

.callout-list li {
    font-size: 16px;
    color: var(--primary-dark);
    line-height: 1.6;
    padding: 12px 0;
    text-align: center;
    position: relative;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.callout-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.callout-emphasis {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 767px) {
    .callout-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .callout-list li {
        font-size: 15px;
        text-align: left;
        justify-content: flex-start;
    }
}

/* Self-Assessment Section - Clipboard Style */
.self-assessment {
    margin: 0 0 32px 0;
    padding: 0;
    background-color: var(--off-white);
    border-radius: 12px;
    border: 2px solid var(--dark-gray);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Clipboard top clip */
.self-assessment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background-color: var(--dark-gray);
    border-radius: 0 0 8px 8px;
    z-index: 1;
}

.assessment-header {
    background-color: var(--white);
    padding: 32px 40px 24px;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
    z-index: 0;
}

.assessment-intro {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 0;
    text-align: center;
}

.assessment-checklist {
    padding: 24px 40px 32px;
    background-color: var(--white);
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.assessment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--light-gray);
    border-right: 1px solid var(--light-gray);
    cursor: pointer;
    transition: background-color var(--transition-base);
    white-space: nowrap;
    overflow: hidden;
}

.assessment-item:nth-child(even) {
    border-right: none;
}

.assessment-item:nth-child(n+9) {
    border-bottom: none;
}

.assessment-item:hover {
    background-color: var(--off-white);
}

.assessment-item:active {
    background-color: var(--light-gray);
}

.assessment-checkbox {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.assessment-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}

.assessment-item-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.assessment-item-text {
    font-size: 15px;
    color: var(--primary-dark);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.assessment-result {
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.assessment-result.warning {
    background-color: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--warning);
    color: var(--primary-dark);
}

.assessment-result.info {
    background-color: rgba(1, 149, 255, 0.1);
    border: 2px solid var(--primary-blue);
    color: var(--primary-dark);
}

/* Consequences Section */
.consequences-section {
    margin: 32px 0;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(33, 117, 155, 0.08) 0%, rgba(33, 117, 155, 0.12) 50%, rgba(33, 117, 155, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 24px rgba(33, 117, 155, 0.15);
    position: relative;
    overflow: hidden;
}

.consequences-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--primary-blue) 100%);
}

.consequences-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.consequences-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.consequences-icon {
    width: 80px;
    height: 80px;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(33, 117, 155, 0.3));
}

.consequences-subtitle {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-top: 16px;
    margin-bottom: 0;
}

.consequences-grid {
    margin-top: 24px;
    gap: 24px;
}

.consequences-column {
    padding: 32px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.consequences-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.consequences-warning {
    border-color: rgba(33, 117, 155, 0.3);
    background: linear-gradient(to bottom, var(--white) 0%, rgba(33, 117, 155, 0.03) 100%);
}

.consequences-powers {
    border-color: rgba(1, 149, 255, 0.3);
    background: linear-gradient(to bottom, var(--white) 0%, rgba(1, 149, 255, 0.05) 100%);
}

.consequences-column-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.consequences-column-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    opacity: 0.8;
}

.consequences-column h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    flex: 1;
    text-align: center;
}

.consequences-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consequences-list li {
    font-size: 16px;
    color: var(--primary-dark);
    line-height: 1.8;
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    font-weight: 500;
}

.consequences-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 20px;
    top: 12px;
}

.consequences-column .card-list {
    margin-top: 0;
    list-style: none;
    padding: 0;
}

.consequences-column .card-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 32px;
    font-weight: 500;
    color: var(--primary-dark);
    position: relative;
    line-height: 1.6;
}

.consequences-column .card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
    font-size: 18px;
    top: 12px;
}

/* CTA Section */
.cta-section {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-primary,
.cta-secondary {
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.cta-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.cta-icon {
    font-size: 56px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    color: var(--primary-blue);
    box-shadow: none;
}

.cta-primary h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-align: center;
}

.cta-secondary h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
    text-align: center;
}

.cta-intro {
    font-size: 18px;
    color: var(--primary-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}

.cta-subheading {
    font-size: 18px;
    color: var(--primary-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    margin-top: 24px;
    text-align: center;
    font-weight: 600;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 32px;
    max-width: 600px;
    text-align: left;
}

.cta-list li {
    font-size: 16px;
    color: var(--primary-dark);
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
}

.cta-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
    font-size: 20px;
    top: 12px;
}

.cta-primary p,
.cta-secondary p {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-list {
        text-align: center;
    }
    
    .cta-list li {
        text-align: left;
        display: inline-block;
        width: 48%;
        vertical-align: top;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 24px;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
    padding-top: 12px;
}

.faq-answer a {
    color: var(--accent-blue);
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--transition-base);
}

.faq-answer a:hover {
    color: var(--primary-blue);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--light-gray);
}

.faq-cta p {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: var(--off-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    color: var(--dark-gray);
    margin-left: 8px;
    font-size: 16px;
}

.breadcrumb-item a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb-item a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.breadcrumb-item:last-child {
    color: var(--primary-dark);
    font-weight: 500;
}

@media (max-width: 767px) {
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .breadcrumb {
        padding: 10px 0;
        font-size: 13px;
    }
}

/* Legal Disclaimer */
.legal-disclaimer {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--off-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.legal-disclaimer h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.legal-disclaimer p {
    font-size: 12px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.disclaimer-date {
    font-size: 11px;
    color: var(--dark-gray);
    font-style: italic;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .intro-text {
        margin-bottom: 24px;
    }
    
    .intro-urgent {
        font-size: 16px;
    }
    
    .category-card-header {
        padding: 20px;
    }
    
    .category-details {
        padding: 0 20px 20px;
    }
    
    .timeline-urgency {
        margin: 24px 0;
        padding: 24px 20px;
    }
    
    .timeline-cards {
        padding: 0 8px;
    }
    
    .timeline-card {
        padding: 24px;
    }
    
    .callout-box {
        padding: 24px;
    }
    
    .self-assessment {
        margin: 0 0 24px 0;
    }
    
    section:has(.self-assessment) {
        padding-top: 16px;
    }
    
    .assessment-header {
        padding: 24px 20px 20px;
    }
    
    .assessment-checklist {
        padding: 20px;
    }
    
    .assessment-grid {
        grid-template-columns: 1fr;
    }
    
    .assessment-item {
        padding: 14px 12px;
        gap: 10px;
        border-right: none;
        white-space: normal;
    }
    
    .assessment-item:nth-child(even) {
        border-right: none;
    }
    
    .assessment-item-content {
        white-space: normal;
    }
    
    .assessment-item-text {
        font-size: 14px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .consequences-section {
        margin: 24px 0;
        padding: 24px 24px;
    }
    
    .consequences-icon {
        width: 60px;
        height: 60px;
    }
    
    .consequences-column {
        padding: 24px;
    }
    
    .consequences-column h5 {
        font-size: 18px;
    }
    
    .consequences-list li,
    .consequences-column .card-list li {
        font-size: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 32px 24px;
    }
    
    .cta-icon {
        font-size: 48px;
        width: 70px;
        height: 70px;
    }
    
    .cta-primary h3 {
        font-size: 24px;
    }
    
    .cta-list li {
        width: 100%;
    }
    
    .legal-disclaimer {
        margin-top: 24px;
        padding: 20px;
    }
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-base);
    color: var(--white);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    transform: scale(1.1);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

