:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --accent: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVIGATION - Using default header styles from styles.css */
/* Removed custom navbar styles to use the default header design */

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1001;
    touch-action: manipulation;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger:active {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #60a5fa;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #60a5fa;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 24px;
        height: 2.5px;
    }
}

/* HERO */
.hero {
    position: relative;
    min-height: 500px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    line-height: 1;
}

.hero-title-line {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    display: block;
    line-height: 1.1;
}

/* QUICK INFO - ANNUAL & BOI REPORTING */
.quick-info {
    padding: 80px 0;
    background: var(--bg-white);
}

.annual-boi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.annual-boi-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.annual-boi-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.annual-boi-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.annual-boi-text .highlight-text {
    color: #0ea5e9;
    font-weight: 800;
}

.intro-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.detail-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-get-started-annual {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-get-started-annual:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-get-started-annual i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-get-started-annual:hover i {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .annual-boi-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .annual-boi-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .annual-boi-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .intro-paragraph,
    .detail-paragraph {
        font-size: 15px;
    }
}

/* NOTICE - ANNUAL STATEMENTS */
.notice-section {
    padding: 80px 0;
    background: #3d5a6b;
}

.annual-statements-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.statements-text {
    color: white;
}

.statements-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.statements-intro {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.benefits-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.benefits-list-statements {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.benefits-list-statements li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.benefits-list-statements li i {
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-size: 16px;
    top: 4px;
}

.filing-express-note {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.highlight-brand {
    color: #0ea5e9;
    font-weight: 700;
}

.btn-get-started-statements {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-get-started-statements:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-get-started-statements i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-get-started-statements:hover i {
    transform: translateX(4px);
}

.statements-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.img-large {
    grid-column: span 2;
}

.img-small {
    grid-column: span 2;
}

@media (max-width: 968px) {
    .annual-statements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .statements-text h2 {
        font-size: 28px;
    }

    .statements-intro,
    .benefits-list-statements li,
    .filing-express-note {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .notice-section {
        padding: 60px 0;
    }

    .statements-text h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .img-large,
    .img-small {
        grid-column: span 1;
    }
}

/* FILTER - BOI SECTION */
.filter-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 100%);
}

.boi-main-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 60px;
}

.boi-content-wrapper {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.boi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.boi-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.boi-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.boi-text {
    display: flex;
    flex-direction: column;
}

.boi-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.boi-benefits-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.boi-benefits-list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.boi-benefits-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.boi-benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 20px;
}

.boi-footer {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-get-started-boi {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-get-started-boi:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-get-started-boi i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-get-started-boi:hover i {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .boi-main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .boi-content-wrapper {
        padding: 40px 30px;
    }

    .boi-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .boi-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .boi-content-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .boi-intro,
    .boi-footer {
        font-size: 15px;
    }

    .boi-benefits-title {
        font-size: 17px;
    }

    .boi-benefits-list li {
        font-size: 15px;
    }
}

/* STATES SECTION - ANNUAL MEETING MINUTES */
.states-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 100%);
}

.meeting-main-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 60px;
}

.meeting-content-wrapper {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.meeting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.meeting-text {
    display: flex;
    flex-direction: column;
}

.meeting-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.meeting-benefits-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.meeting-benefits-list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.meeting-benefits-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.meeting-benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 20px;
}

.meeting-footer {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-get-started-meeting {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-get-started-meeting:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-get-started-meeting i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-get-started-meeting:hover i {
    transform: translateX(4px);
}

.meeting-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.meeting-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 968px) {
    .meeting-main-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .meeting-content-wrapper {
        padding: 40px 30px;
    }

    .meeting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .meeting-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .meeting-content-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .meeting-intro,
    .meeting-footer {
        font-size: 15px;
    }

    .meeting-benefits-title {
        font-size: 17px;
    }

    .meeting-benefits-list li {
        font-size: 15px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.state-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.state-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.state-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-light);
}

.state-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.state-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.state-badge.annual {
    background: #dbeafe;
    color: var(--primary);
}

.state-badge.biennial {
    background: #d1fae5;
    color: var(--accent);
}

.state-badge.monthly {
    background: #fef3c7;
    color: var(--warning);
}

.state-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: var(--text-light);
}

.detail-row .value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.detail-row .penalty {
    color: var(--danger);
}

.btn-file {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-file:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.view-all-container {
    text-align: center;
}

.btn-view-all {
    padding: 16px 48px;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

.btn-view-all:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features .feature {
    font-size: 16px;
    font-weight: 500;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background: #2d2d2d !important;
        width: 100% !important;
        padding: 15px 0 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
        transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        z-index: 999 !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .hero-content h1,
    .hero-title-line {
        font-size: 42px !important;
    }

    .hero-search {
        flex-direction: column;
    }

    .states-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .hero-content h1,
    .hero-title-line {
        font-size: 32px !important;
        letter-spacing: 1px !important;
    }

    .hero-content p {
        font-size: 16px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .filter-controls {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* ANIMATIONS */
.state-card {
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.state-card:nth-child(1) { animation-delay: 0.1s; }
.state-card:nth-child(2) { animation-delay: 0.15s; }
.state-card:nth-child(3) { animation-delay: 0.2s; }
.state-card:nth-child(4) { animation-delay: 0.25s; }
.state-card:nth-child(5) { animation-delay: 0.3s; }
.state-card:nth-child(6) { animation-delay: 0.35s; }


/* CERTIFIED COPIES SECTION */
.certified-main-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: #1e3a8a;
    margin-top: 60px;
    margin-bottom: 60px;
}

.certified-content-wrapper {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.certified-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.certified-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.certified-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.certified-text {
    display: flex;
    flex-direction: column;
}

.certified-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.certified-benefits-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.certified-benefits-list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.certified-benefits-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.certified-benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 20px;
}

.certified-footer {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-get-started-certified {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-get-started-certified:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-get-started-certified i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-get-started-certified:hover i {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .certified-main-title {
        font-size: 36px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .certified-content-wrapper {
        padding: 40px 30px;
    }

    .certified-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .certified-main-title {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .certified-content-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .certified-intro,
    .certified-footer {
        font-size: 15px;
    }

    .certified-benefits-title {
        font-size: 17px;
    }

    .certified-benefits-list li {
        font-size: 15px;
    }
}


/* COMPLIANCE & RECORDS MANAGEMENT SECTION */
.compliance-main-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: #1e3a8a;
    margin-top: 60px;
    margin-bottom: 60px;
}

.compliance-content-wrapper {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.compliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.compliance-text {
    display: flex;
    flex-direction: column;
}

.compliance-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.compliance-detail {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.compliance-reasons-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.compliance-reasons-list {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.compliance-reasons-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.compliance-reasons-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 20px;
}

.compliance-footer {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-get-started-compliance {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #0ea5e9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    width: fit-content;
}

.btn-get-started-compliance:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-get-started-compliance i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-get-started-compliance:hover i {
    transform: translateX(4px);
}

.compliance-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.compliance-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 968px) {
    .compliance-main-title {
        font-size: 36px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .compliance-content-wrapper {
        padding: 40px 30px;
    }

    .compliance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .compliance-main-title {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .compliance-content-wrapper {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .compliance-intro,
    .compliance-detail,
    .compliance-footer {
        font-size: 15px;
    }

    .compliance-reasons-title {
        font-size: 17px;
    }

    .compliance-reasons-list li {
        font-size: 15px;
    }
}
