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

:root {
    --primary-color: #1e3a8a;
    --primary-dark: #172554;
    --primary-light: #2563eb;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   HEADER - Fraud Recovery Guidance Center Style
   ============================================ */

.header {
    background: white;
    border-bottom: 3px solid #1a4480;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.ftc-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.logo-link:active {
    opacity: 0.9;
}

.search-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 500px;
}

.search-input {
    flex: 1;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px;
    outline: none;
    min-width: 300px;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #e8e8e8;
    border: 1px solid #ccc;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    color: #333;
}

.search-btn:hover {
    background: #d8d8d8;
}

.menu-button {
    display: none;
    background: #1a4480;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0;
}

.menu-button:hover {
    background: #0f2d5c;
}

.nav-section {
    display: none;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.nav-item {
    color: #1a4480;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nav-item:hover {
    text-decoration: underline;
}

.lang-dropdown {
    border: 2px solid #1a4480;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    background: white;
    cursor: pointer;
    min-width: 140px;
}

.btn-report {
    background: #1a4480;
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.btn-report:hover {
    background: #0f2d5c;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    padding: 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a,
.mobile-menu select {
    color: #1a4480;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 20px;
    border-bottom: 1px solid #ddd;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mobile-menu a:hover {
    background: #e8f4f8;
}

.mobile-menu .btn-report {
    background: #1a4480;
    color: white;
    margin: 10px;
    border: none;
    justify-content: center;
}

.mobile-search {
    padding: 10px 20px;
    gap: 8px;
}

.alert-banner {
    background: #1a4480;
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.alert-banner a {
    color: white;
    text-decoration: underline;
}

.alert-banner a:hover {
    text-decoration: none;
}

@media (max-width: 1024px) {
    .header-top {
        gap: 20px;
    }

    .search-section {
        max-width: 400px;
    }

    .search-input {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    /* Hide desktop elements */
    .search-section {
        display: none;
    }

    .nav-section {
        display: none;
    }

    /* Show mobile menu button */
    .menu-button {
        display: block;
        padding: 15px 20px;
    }

    /* Adjust header top for mobile */
    .header-top {
        padding: 15px 0;
        border-bottom: none;
        gap: 15px;
    }

    .ftc-logo {
        max-width: 200px;
    }

    /* Mobile search bar - full width below logo */
    .mobile-menu.active {
        display: flex;
    }

    .mobile-search {
        display: flex;
        width: 100%;
        padding: 12px 20px;
        gap: 8px;
        border-bottom: 1px solid #ddd;
    }

    .mobile-search .search-input {
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 12px 0;
        gap: 10px;
    }

    .ftc-logo {
        max-width: 150px;
    }

    .menu-button {
        padding: 12px 16px;
        font-size: 12px;
    }

    .mobile-menu a,
    .mobile-menu select {
        font-size: 12px;
        padding: 10px 16px;
    }

    .mobile-search {
        padding: 10px 16px;
    }

    .search-input {
        font-size: 12px;
        padding: 10px 12px;
    }

    .search-btn {
        padding: 10px 12px;
    }
}

/* US Flag Graphics */
.flag-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}

.flag-stars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 30px;
    height: 20px;
    background: #002868;
    border-radius: 2px 0 0 2px;
    padding: 2px;
}

.flag-stars i {
    color: white;
    font-size: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-stripes {
    width: 20px;
    height: 20px;
    background: repeating-linear-gradient(
        0deg,
        #BF0A30 0px,
        #BF0A30 2px,
        white 2px,
        white 4px
    );
    border-radius: 0 2px 2px 0;
}

.hero-flags {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.1;
}

.hero-flag {
    transform: scale(3);
}

.hero-flag .flag-stars {
    width: 45px;
    height: 30px;
    padding: 3px;
}

.hero-flag .flag-stars i {
    font-size: 8px;
}

.hero-flag .flag-stripes {
    width: 30px;
    height: 30px;
}

.footer-flag {
    margin-top: 15px;
}

.mini-flag {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mini-stars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 20px;
    height: 14px;
    background: #002868;
    border-radius: 1px 0 0 1px;
    padding: 1px;
}

.mini-stars i {
    color: white;
    font-size: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-stripes {
    width: 14px;
    height: 14px;
    background: repeating-linear-gradient(
        0deg,
        #BF0A30 0px,
        #BF0A30 1.5px,
        white 1.5px,
        white 3px
    );
    border-radius: 0 1px 1px 0;
}

/* USA Map Visualization */
.usa-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background: rgba(26, 68, 128, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-states {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    padding: 20px;
}

.state {
    background: #1a4480;
    color: white;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.state:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

.state[data-state="CA"] { grid-column: 1; grid-row: 3; }
.state[data-state="TX"] { grid-column: 2; grid-row: 3; }
.state[data-state="FL"] { grid-column: 3; grid-row: 3; }
.state[data-state="NY"] { grid-column: 3; grid-row: 1; }
.state[data-state="IL"] { grid-column: 2; grid-row: 2; }

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

/* ============================================
   HEADER STYLES - Clean & Simple
   ============================================ */

.header {
    background: white;
    border-bottom: 3px solid #1a4480;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-logo {
    flex: 1;
}

.header-logo h1 {
    font-size: 18px;
    font-weight: 700;
    color: #1a4480;
    margin: 0;
    letter-spacing: 0.5px;
}

.header-logo p {
    font-size: 14px;
    color: #666;
    margin: 4px 0 0 0;
    font-weight: 500;
}

/* Desktop Navigation */
.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav a {
    color: #1a4480;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.header-nav a:hover {
    color: #0f2d5c;
    border-bottom-color: #1a4480;
}

.header-nav a.admin-link {
    background: #f59e0b;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    border-bottom: none;
}

.header-nav a.admin-link:hover {
    background: #d97706;
    border-bottom: none;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1a4480;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: 15px;
    padding: 0;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #1a4480;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s;
}

.mobile-nav a:hover {
    background: #e7f3ff;
}

.mobile-nav a.admin-link {
    background: #f59e0b;
    color: white;
    border: none;
    margin: 10px 20px;
    border-radius: 4px;
    text-align: center;
}

.mobile-nav a.admin-link:hover {
    background: #d97706;
}

/* Alert Banner */
.alert-banner {
    background: #fef2f2;
    border-bottom: 1px solid #fecaca;
    padding: 12px 0;
}

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

.alert-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-message {
    font-size: 13px;
    color: #7f1d1d;
    line-height: 1.5;
    margin: 0;
}

.alert-message strong {
    color: #991b1b;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .header-wrapper {
        gap: 15px;
    }

    .header-logo h1 {
        font-size: 16px;
    }

    .header-logo p {
        font-size: 12px;
    }

    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .alert-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .alert-icon {
        margin-top: 0;
    }

    .alert-message {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }

    .header-wrapper {
        gap: 10px;
    }

    .header-logo h1 {
        font-size: 14px;
    }

    .header-logo p {
        font-size: 11px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .mobile-nav a {
        font-size: 13px;
        padding: 10px 16px;
    }

    .alert-message {
        font-size: 11px;
    }
}

/* Alert Banner */
.alert-banner {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

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

.alert-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.alert-icon {
    flex-shrink: 0;
    color: #f59e0b;
}

.alert-content {
    flex: 1;
}

.alert-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.alert-action {
    color: #0071bc;
    text-decoration: underline;
    font-weight: 600;
}

.alert-action:hover {
    text-decoration: none;
}

.alert-dismiss {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

    color: #495057;
    background: #e9ecef;
}

/* ============================================
   HEADER STYLES - Fraud Recovery Guidance Center Style
   ============================================ */

.header {
    background: white;
    border-bottom: 3px solid #1a4480;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-subtitle {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-title {
    font-size: 16px;
    color: #1a4480;
    font-weight: 700;
}

/* Desktop Navigation */
.header-nav-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
    max-width: 400px;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
}

.search-bar input::placeholder {
    color: #999;
}

.search-btn {
    background: #e8e8e8;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.search-btn:hover {
    background: #d8d8d8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    color: #1a4480;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.nav-links a:hover {
    text-decoration: underline;
}

.lang-select {
    border: 1px solid #1a4480;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    background: white;
    cursor: pointer;
}

.btn-report {
    background: #1a4480;
    color: white !important;
    padding: 10px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.btn-report:hover {
    background: #0f2d5c;
    text-decoration: none;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: #1a4480;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
}

.menu-btn:hover {
    background: #0f2d5c;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding: 0;
}

.mobile-nav.active {
    display: flex;
}

.mobile-search {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 10px;
    overflow: hidden;
}

.mobile-search input {
    flex: 1;
    border: none;
    padding: 10px 12px;
    font-size: 13px;
    outline: none;
}

.mobile-nav a {
    color: #1a4480;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 20px;
    border-bottom: 1px solid #ddd;
}

.mobile-nav a:hover {
    background: #e8f4f8;
}

.mobile-nav .lang-select {
    margin: 10px;
    width: calc(100% - 20px);
}

.mobile-nav .btn-report {
    margin: 10px;
    justify-content: center;
}

/* Alert Banner */
.alert-banner {
    background: #1a4480;
    color: white;
    padding: 12px 0;
    text-align: center;
}

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

.alert-banner strong {
    font-size: 14px;
    font-weight: 600;
}

.alert-banner a {
    color: white;
    text-decoration: underline;
}

.alert-banner a:hover {
    text-decoration: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .header-nav-desktop {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .logo-title {
        font-size: 14px;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav.active {
        display: flex;
    }

    .alert-banner strong {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }

    .header-top {
        gap: 10px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .logo-title {
        font-size: 12px;
    }

    .menu-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .mobile-search {
        margin: 8px;
    }

    .mobile-search input {
        font-size: 12px;
    }

    .mobile-nav a {
        font-size: 12px;
        padding: 10px 16px;
    }

    .mobile-nav .lang-select {
        margin: 8px;
        width: calc(100% - 16px);
        font-size: 12px;
    }

    .mobile-nav .btn-report {
        margin: 8px;
        font-size: 12px;
    }

    .alert-banner strong {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .top-banner .container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .banner-right {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .banner-right a {
        font-size: 12px;
    }

    .header-content {
        gap: 15px;
    }

    .logo-text h1 {
        font-size: 14px;
    }

    .logo-text p {
        font-size: 10px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .alert-banner .container {
        flex-direction: column;
        gap: 8px;
    }

    .alert-icon {
        margin-top: 0;
    }

    .alert-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        padding: 8px 0;
        font-size: 12px;
    }

    .banner-left {
        gap: 8px;
    }

    .how-you-know {
        margin-left: 8px;
    }

    .banner-right {
        gap: 6px;
    }

    .btn-report,
    .btn-alerts,
    .btn-search {
        padding: 4px 8px;
        font-size: 11px;
    }

    .main-header {
        padding: 12px 0;
    }

    .header-content {
        gap: 10px;
    }

    .ftc-seal {
        width: 50px;
        height: 50px;
    }

    .logo-text h1 {
        font-size: 12px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .mobile-menu-btn span {
        width: 20px;
    }

    .mobile-nav a {
        font-size: 12px;
        padding: 10px 16px;
    }

    .alert-text {
        font-size: 11px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h2 {
        font-size: 40px;
    }
    
    .steps {
        gap: 24px;
    }
    
    .how-it-works h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    /* Government Banner */
    .gov-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .gov-banner-left {
        width: 100%;
    }

    .gov-banner-text {
        font-size: 13px;
    }

    .gov-banner-info-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Main Header */
    .header-top {
        gap: 12px;
    }

    .ftc-seal {
        width: 50px;
        height: 50px;
    }

    .header-site-name {
        font-size: 18px;
    }

    .header-agency {
        font-size: 12px;
    }

    .header-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-nav-mobile {
        display: none;
    }

    .header-nav-mobile.active {
        display: flex;
    }

    .mobile-search {
        margin: 12px 16px;
    }

    .search-input {
        min-width: auto;
        font-size: 13px;
    }

    .mobile-nav-item {
        font-size: 13px;
        padding: 10px 16px;
    }

    /* Alert Banner */
    .alert-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .alert-icon {
        font-size: 18px;
    }

    .alert-text {
        font-size: 13px;
    }

    /* Hero Section */
    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Steps */
    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .step {
        padding: 30px 20px;
    }

    .step-icon {
        font-size: 48px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 14px;
    }

    /* Form */
    .form-header h2 {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .gov-banner-text {
        font-size: 12px;
    }

    .gov-banner-toggle {
        font-size: 12px;
    }

    .gov-banner-lang {
        font-size: 12px;
        padding: 4px 8px;
    }

    .header-logo-section {
        gap: 12px;
    }

    .ftc-seal {
        width: 45px;
        height: 45px;
    }

    .header-site-name {
        font-size: 16px;
    }

    .header-agency {
        font-size: 11px;
    }

    .mobile-menu-btn {
        padding: 6px;
    }

    .hamburger {
        width: 20px;
        height: 2px;
    }

    .alert-text {
        font-size: 12px;
    }

    .alert-icon {
        font-size: 16px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .step {
        padding: 24px 16px;
    }

    .step-icon {
        font-size: 40px;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 13px;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .form-step h3 {
        font-size: 18px;
    }

    .radio-option {
        padding: 16px;
        margin-bottom: 12px;
    }

    .option-content strong {
        font-size: 14px;
    }

    .option-content p {
        font-size: 12px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }

    .progress-step {
        padding: 8px 16px;
        font-size: 12px;
    }

    .map-section h2 {
        font-size: 28px;
    }

    .map-section p {
        font-size: 14px;
    }

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

    .data-links .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gov-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .gov-banner-left {
        flex-direction: column;
        gap: 8px;
    }

    .gov-flag-icon {
        width: 24px;
        height: 16px;
    }

    .gov-banner-text {
        font-size: 11px;
    }

    .gov-banner-toggle {
        font-size: 11px;
    }

    .header-logo-section {
        gap: 10px;
    }

    .ftc-seal {
        width: 40px;
        height: 40px;
    }

    .header-site-name {
        font-size: 14px;
    }

    .header-agency {
        font-size: 10px;
    }

    .mobile-search {
        margin: 10px 12px;
    }

    .search-input {
        padding: 8px 10px;
        font-size: 12px;
    }

    .mobile-nav-item {
        font-size: 12px;
        padding: 8px 12px;
    }

    .alert-text {
        font-size: 11px;
    }

    .alert-icon {
        font-size: 14px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }

    .step {
        padding: 20px 12px;
    }

    .step-icon {
        font-size: 36px;
    }

    .step h3 {
        font-size: 14px;
    }

    .step p {
        font-size: 12px;
    }

    .form-header h2 {
        font-size: 18px;
    }

    .form-step h3 {
        font-size: 16px;
    }

    .radio-option {
        padding: 12px;
        gap: 10px;
    }

    .option-content strong {
        font-size: 13px;
    }

    .option-content p {
        font-size: 11px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 8px;
    }

    .progress-step {
        padding: 6px 12px;
        font-size: 11px;
    }

    .map-section h2 {
        font-size: 24px;
    }

    .map-section p {
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section a {
        font-size: 12px;
    }
}

.admin-link:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Warning Banner */
.warning-banner {
    background: linear-gradient(90deg, #fef2f2 0%, #fef7f7 100%);
    border-bottom: 1px solid #fecaca;
    padding: 16px 0;
    position: relative;
    overflow: hidden;
}

.warning-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.warning-content {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.warning-icon {
    font-size: 24px;
    color: var(--warning-color);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.warning-text {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.warning-text strong {
    color: var(--danger-color);
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M30 5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 36c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 36c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 36c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 36c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z' fill='rgba(255,255,255,0.1)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    0% { 
        opacity: 0;
        transform: translateY(30px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #1a4480 0%, #0f2d5c 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(26, 68, 128, 0.3);
    min-width: 140px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 68, 128, 0.4);
    background: linear-gradient(135deg, #0f2d5c 0%, #1a4480 100%);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 68, 128, 0.3);
}

.btn-link {
    background: none;
    color: var(--primary-color);
    border: 2px solid transparent;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--border-radius);
    position: relative;
}

.btn-link:hover {
    color: var(--primary-light);
    background: var(--gray-50);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.step {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(30, 58, 138, 0.2);
}

.step-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    animation: bounce 2s infinite;
}

.step:nth-child(2) .step-icon {
    animation-delay: 0.5s;
}

.step:nth-child(3) .step-icon {
    animation-delay: 1s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.step p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    font-weight: 500;
}

.arrow {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

.cta-buttons {
    text-align: center;
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

/* Report Form */
.report-form,
.report-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    position: relative;
    min-height: 100vh;
}

.report-form.hidden {
    display: none;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.form-header h1,
.form-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a4480;
    letter-spacing: -0.02em;
}

.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 60px;
    position: relative;
    flex-wrap: nowrap;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, #e5e7eb 0%, #1a4480 50%, #e5e7eb 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.progress-step {
    background: #e5e7eb;
    color: #666;
    padding: 10px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
}

.progress-step.active {
    background: linear-gradient(135deg, #1a4480 0%, #0f2d5c 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(26, 68, 128, 0.3);
    transform: scale(1.05);
}

.progress-line {
    width: 20px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.form-step {
    max-width: 750px;
    margin: 0 auto;
    display: none !important;
    padding: 50px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.form-step.active {
    display: block !important;
    animation: slideIn 0.3s ease;
}

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

.form-step h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a4480;
    line-height: 1.3;
}

.form-step > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Radio Options */
.radio-options {
    margin-bottom: 40px;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.radio-option:hover {
    border-color: #1a4480;
    background: #f0f4f8;
    box-shadow: 0 4px 12px rgba(26, 68, 128, 0.1);
    transform: translateY(-2px);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 2.5px solid #1a4480;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    background: white;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    background: #1a4480;
    box-shadow: 0 0 0 4px rgba(26, 68, 128, 0.1);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.option-content strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 700;
    color: #1a4480;
}

.option-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a4480;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.required {
    color: #c41e3a;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #1a4480;
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 68, 128, 0.1);
}

/* Form Select Styling */
.form-select {
    cursor: pointer;
}

.form-select:hover {
    border-color: #d1d5db;
}

.form-select:focus {
    outline: none;
    border-color: #1a4480;
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 68, 128, 0.1);
}

.form-select option {
    padding: 10px;
    color: #333;
    background: white;
}

/* Form Section Header */
.form-section-header {
    margin-top: 40px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e9ecef;
}

.form-section-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a4480;
    margin: 0 0 8px 0;
}

.form-section-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Sub-label for nested form groups */
.sub-label {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #666 !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.map-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a4480;
}

.map-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.map-visual {
    margin: 40px 0;
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    position: relative;
}

.report-icon {
    font-size: 48px;
    background: white;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.network-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26,68,128,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.data-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a4480 0%, #0f2d5a 100%);
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
    border-top: 4px solid #ff6b35;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    padding: 40px 0;
}

.footer-brand {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 30px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.footer-tagline {
    font-size: 12px;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.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: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-section a i {
    font-size: 14px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-section a:hover i {
    color: #ffa366;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-secure {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-secure i {
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h2 {
        font-size: 40px;
    }
    
    .steps {
        gap: 24px;
    }
    
    .how-it-works h2 {
        font-size: 38px;
    }
    
    .agency-name {
        font-size: 22px;
    }
    
    .nav-link {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 12px 0;
    }
    
    .banner-flag {
        margin-right: 0;
    }
    
    .banner-actions {
        justify-content: center;
    }
    
    .header-wrapper {
        flex-direction: column;
        gap: 16px;
        padding: 12px 0;
    }
    
    .agency-header {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .agency-name {
        font-size: 20px;
    }
    
    .site-identifier {
        font-size: 13px;
    }
    
    .primary-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 16px;
        right: 20px;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .alert-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }
    
    .alert-message {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .banner-text {
        font-size: 13px;
    }
    
    .banner-dropdown-btn,
    .lang-toggle {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .agency-seal svg {
        width: 40px;
        height: 40px;
    }
    
    .agency-name {
        font-size: 18px;
    }
    
    .site-identifier {
        font-size: 12px;
    }
    
    .alert-message {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .banner-text {
        font-size: 12px;
    }
    
    .agency-name {
        font-size: 16px;
    }
    
    .site-identifier {
        font-size: 11px;
    }
    
    .alert-message {
        font-size: 11px;
    }
    
    .mobile-nav-link {
        font-size: 13px;
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .usa-banner .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .header-content {
        gap: 6px;
    }
    
    .main-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .federal-trade, .commission {
        font-size: 24px;
    }
    
    .reportfraud-link {
        font-size: 14px;
    }
    
    .commission-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sub-links {
        gap: 12px;
    }
    
    .sub-link {
        font-size: 13px;
    }
    
    .alert-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .alert-text {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 12px 0;
    }
    
    .federal-trade, .commission {
        font-size: 20px;
    }
    
    .reportfraud-link {
        font-size: 13px;
    }
    
    .sub-link {
        font-size: 12px;
    }
    
    .usa-banner-text {
        font-size: 13px;
    }
    
    .alert-text {
        font-size: 12px;
    }
    
    .alert-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .federal-trade, .commission {
        font-size: 18px;
    }
    
    .reportfraud-link {
        font-size: 12px;
    }
    
    .sub-link {
        font-size: 11px;
    }
    
    .usa-banner-text {
        font-size: 12px;
    }
    
    .alert-text {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 16px;
    }
    
    .logo {
        margin-bottom: 8px;
    }
    
    .nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .hero {
        padding: 50px 0;
        min-height: 60vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content h2 {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    .hero-flags {
        display: none;
    }
    
    .how-it-works {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .how-it-works h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .steps {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .step {
        padding: 24px 16px;
        margin: 0;
        width: 100%;
        max-width: none;
    }
    
    .step-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .step h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .step p {
        font-size: 14px;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 16px 0;
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .progress-bar {
        gap: 6px;
        margin-bottom: 40px;
    }
    
    .progress-step {
        padding: 9px 12px;
        font-size: 11px;
    }
    
    .progress-line {
        width: 15px;
    }
    
    .form-buttons {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary {
        flex: 1;
        min-width: 120px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .map-section {
        padding: 60px 0;
        min-height: 50vh;
    }
    
    .map-container {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 200px;
    }
    
    .usa-map {
        width: 100%;
        height: 200px;
    }
    
    .map-states {
        padding: 16px;
        gap: 12px;
    }
    
    .state {
        font-size: 11px;
        padding: 6px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-brand {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .footer-section h4 {
        font-size: 14px;
    }
    
    .footer-section a {
        font-size: 13px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-bottom-info {
        justify-content: center;
        font-size: 12px;
    }
    
    .data-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .stats-overview {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works h2 {
        font-size: 32px;
    }
    
    .step {
        padding: 24px 16px;
    }
    
    .step-icon {
        font-size: 48px;
    }
    
    .step h3 {
        font-size: 18px;
    }
    
    .form-step {
        padding: 20px;
    }
    
    .form-step h3 {
        font-size: 20px;
    }
    
    .progress-bar {
        gap: 5px;
        margin-bottom: 30px;
    }
    
    .progress-step {
        padding: 8px 11px;
        font-size: 10px;
    }
    
    .progress-line {
        width: 12px;
    }
    
    .form-buttons {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary {
        flex: 1;
        min-width: 100px;
        padding: 11px 16px;
        font-size: 13px;
    }
    
    .map-section {
        padding: 40px 0;
    }
    
    .map-container {
        width: 250px;
        height: 150px;
    }
    
    .usa-map {
        width: 250px;
        height: 150px;
    }
    
    .map-states {
        padding: 15px;
        gap: 10px;
    }
    
    .state {
        font-size: 10px;
        padding: 4px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }
    
    .footer-brand {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .footer-section h4 {
        font-size: 13px;
    }
    
    .footer-section a {
        font-size: 12px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-copyright {
        font-size: 11px;
    }
    
    .footer-bottom-info {
        justify-content: center;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .btn-primary, .btn-secondary, .btn-link {
        width: auto;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .form-buttons {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary {
        flex: 1;
        min-width: 90px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .warning-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .warning-text {
        font-size: 14px;
        text-align: center;
    }
    
    .form-step {
        padding: 16px;
    }
    
    .form-header h2 {
        font-size: 16px;
    }
    
    .progress-bar {
        gap: 4px;
        margin-bottom: 25px;
    }
    
    .progress-step {
        padding: 7px 10px;
        font-size: 9px;
    }
    
    .progress-line {
        width: 10px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }
    
    .footer-content {
        gap: 15px;
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 15px;
    }
    
    .footer-section h4 {
        font-size: 13px;
    }
    
    .footer-section a {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-copyright {
        font-size: 10px;
    }
    
    .footer-bottom-info {
        justify-content: center;
        font-size: 10px;
    }
}


/* ============================================
   HOME PAGE - NEW DESIGN
   ============================================ */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 50%, #ADD8E6 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a4480;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #333;
    margin: 20px 0;
    line-height: 1.6;
}

.btn-report-hero {
    display: inline-block;
    background: #1a4480;
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin: 20px 0;
    transition: background 0.3s;
}

.btn-report-hero:hover {
    background: #0f2d5c;
}

.hero-illustration {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.hero-illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 20px;
    background: white;
}

.how-it-works-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a4480;
    text-align: center;
    margin: 0 0 50px 0;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-item .step-icon {
    font-size: 60px;
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item .step-icon svg {
    width: 100%;
    height: 100%;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a4480;
    margin: 15px 0;
}

.step-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.arrow-icon {
    font-size: 32px;
    color: #f59e0b;
    font-weight: bold;
}

.cta-links {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.link-primary {
    color: #1a4480;
    text-decoration: underline;
    font-weight: 600;
}

.link-primary:hover {
    text-decoration: none;
}

/* Warning Banner Section */
.warning-banner-section {
    padding: 40px 20px;
    background: #1a4480;
}

.warning-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #1a4480;
    color: white;
}

.warning-banner .warning-icon {
    font-size: 32px;
    flex-shrink: 0;
    margin-top: 5px;
}

.warning-banner .warning-text {
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

.warning-banner .warning-text strong {
    color: white;
    font-weight: 700;
}

.warning-banner a {
    color: white;
    text-decoration: underline;
}

.warning-banner a:hover {
    text-decoration: none;
}

/* Power Section */
.power-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.power-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a4480;
    margin: 0 0 20px 0;
}

.power-subtitle {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
}

.power-section p {
    font-size: 16px;
    color: #666;
    max-width: 900px;
    margin: 15px auto;
    line-height: 1.6;
}

.power-section a {
    color: #1a4480;
    text-decoration: underline;
    font-weight: 600;
}

.power-section a:hover {
    text-decoration: none;
}

.map-section {
    margin: 40px 0;
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #7dd3fc;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(26, 68, 128, 0.15);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a4480;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

.power-cta {
    font-size: 16px;
    color: #333;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-illustration {
        max-width: 300px;
    }

    .steps-grid {
        gap: 20px;
    }

    .step-item {
        min-width: 150px;
        max-width: 200px;
    }

    .how-it-works-section h2 {
        font-size: 28px;
    }

    .power-section h2 {
        font-size: 28px;
    }

    .warning-banner {
        flex-direction: column;
    }

    .warning-banner .warning-icon {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-report-hero {
        padding: 12px 24px;
        font-size: 14px;
    }

    .steps-grid {
        gap: 15px;
    }

    .step-item {
        min-width: 120px;
        max-width: 150px;
    }

    .step-item h3 {
        font-size: 16px;
    }

    .step-item p {
        font-size: 12px;
    }

    .arrow-icon {
        font-size: 24px;
    }

    .how-it-works-section h2 {
        font-size: 22px;
    }

    .power-section h2 {
        font-size: 22px;
    }

    .power-section p {
        font-size: 14px;
    }

    .cta-links {
        font-size: 14px;
    }

    .warning-banner-section {
        padding: 20px 15px;
    }

    .warning-banner .warning-text {
        font-size: 14px;
    }
}


/* Country Selector Styles */
.country-phone-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.country-select {
    width: 100%;
    padding: 14px 16px;
    padding-right: 45px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a4480' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.country-select:focus {
    outline: none;
    border-color: #1a4480;
    box-shadow: 0 0 0 3px rgba(26, 68, 128, 0.1);
}

.country-flag {
    position: absolute;
    right: 12px;
    font-size: 20px;
    pointer-events: none;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0 12px;
    transition: border-color 0.3s;
}

.phone-input-wrapper:focus-within {
    border-color: #1a4480;
    box-shadow: 0 0 0 3px rgba(26, 68, 128, 0.1);
}

.phone-code {
    font-weight: 600;
    color: #1a4480;
    white-space: nowrap;
    min-width: 40px;
}

.phone-input {
    flex: 1;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.phone-input::placeholder {
    color: #999;
}

/* Messaging Wrapper */
.messaging-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .country-select {
        padding: 12px 14px;
        padding-right: 35px;
        font-size: 14px;
    }
    
    .country-flag {
        font-size: 18px;
        right: 10px;
    }
    
    .phone-input-wrapper {
        padding: 0 10px;
    }
    
    .phone-code {
        min-width: 35px;
        font-size: 14px;
    }
    
    .phone-input {
        padding: 12px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .country-select {
        padding: 10px 12px;
        padding-right: 30px;
        font-size: 13px;
    }
    
    .country-flag {
        font-size: 16px;
        right: 8px;
    }
    
    .phone-input-wrapper {
        padding: 0 8px;
        gap: 6px;
    }
    
    .phone-code {
        min-width: 30px;
        font-size: 12px;
    }
    
    .phone-input {
        padding: 10px 0;
        font-size: 13px;
    }
}


/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-hero {
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.faq-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.faq-hero p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.faq-search-box {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.faq-search-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.faq-search-input::placeholder {
    color: #999;
}

.faq-search-btn {
    padding: 14px 20px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.faq-search-btn:hover {
    background: #e55a24;
}

.faq-content {
    padding: 60px 20px;
    background: #f8f9fa;
}

.faq-section {
    margin-bottom: 50px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-section-header {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    padding: 25px;
    border-left: 5px solid #1a4480;
}

.faq-section-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a4480;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-section-header i {
    font-size: 24px;
}

/* FAQ Items - Using native <details> element */
.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* Summary (Question) styling */
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
    user-select: none;
    background: white;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a4480;
    list-style: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::before {
    content: '▶';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #1a4480;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.faq-item[open] .faq-question::before {
    transform: rotate(90deg);
}

.faq-text {
    font-weight: 600;
    color: #1a4480;
    font-size: 16px;
    flex: 1;
}

/* Answer styling */
.faq-answer {
    background: #f8f9fa;
    padding: 0 25px 20px 25px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.6;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.faq-answer strong {
    color: #1a4480;
    font-weight: 600;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.faq-cta {
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.faq-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.faq-cta p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.about-cta {
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.about-cta p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

/* ============================================
   PRIVACY PAGE STYLES
   ============================================ */

.privacy-hero {
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.privacy-hero p {
    font-size: 20px;
    opacity: 0.95;
    margin: 0;
}

.privacy-content {
    padding: 60px 20px;
    background: #f8f9fa;
}

.privacy-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a4480;
    margin: 0 0 20px 0;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 15px 0;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
    overflow: hidden;
}

.privacy-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
    user-select: none;
    background: white;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a4480;
    list-style: none;
}

.privacy-question:hover {
    background: #f8f9fa;
}

.privacy-question::-webkit-details-marker {
    display: none;
}

.privacy-question::before {
    content: '▶';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #1a4480;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.privacy-item[open] .privacy-question::before {
    transform: rotate(90deg);
}

.privacy-text {
    font-weight: 600;
    color: #1a4480;
    font-size: 16px;
    flex: 1;
}

.privacy-answer {
    background: #f8f9fa;
    padding: 0 25px 20px 25px;
    animation: slideDown 0.3s ease;
}

.privacy-answer p {
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.6;
}

.privacy-answer p:first-child {
    margin-top: 0;
}

.privacy-answer p:last-child {
    margin-bottom: 0;
}

.privacy-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-answer li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.privacy-answer strong {
    color: #1a4480;
    font-weight: 600;
}

.privacy-footer {
    text-align: center;
    background: #e7f3ff;
    border-left: 4px solid #1a4480;
}

.contact-info {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a4480;
}

.contact-info p {
    margin: 8px 0;
    font-size: 16px;
}

.contact-info a {
    color: #1a4480;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.privacy-cta {
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.privacy-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.privacy-cta p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.95;
    margin: 0;
}

.contact-content {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

.contact-method {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a4480;
    margin: 0 0 15px 0;
}

.method-title {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.method-detail {
    font-size: 16px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.method-detail a {
    color: #1a4480;
    text-decoration: none;
}

.method-detail a:hover {
    text-decoration: underline;
}

.method-hours {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.contact-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a4480;
    margin: 0 0 15px 0;
}

.contact-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 15px 0;
}

.contact-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-section li {
    padding: 8px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.contact-section a {
    color: #1a4480;
    text-decoration: none;
    font-weight: 600;
}

.contact-section a:hover {
    text-decoration: underline;
}

.contact-faq {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-faq h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a4480;
    margin: 0 0 30px 0;
}

.contact-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
    overflow: hidden;
}

.contact-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
    user-select: none;
    background: white;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a4480;
    list-style: none;
}

.contact-question:hover {
    background: #f8f9fa;
}

.contact-question::-webkit-details-marker {
    display: none;
}

.contact-question::before {
    content: '▶';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #1a4480;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.contact-item[open] .contact-question::before {
    transform: rotate(90deg);
}

.contact-text {
    font-weight: 600;
    color: #1a4480;
    font-size: 16px;
    flex: 1;
}

.contact-answer {
    background: #f8f9fa;
    padding: 0 25px 20px 25px;
    animation: slideDown 0.3s ease;
}

.contact-answer p {
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.6;
}

.contact-answer p:first-child {
    margin-top: 0;
}

.contact-answer p:last-child {
    margin-bottom: 0;
}

.contact-answer a {
    color: #1a4480;
    text-decoration: none;
    font-weight: 600;
}

.contact-answer a:hover {
    text-decoration: underline;
}

.contact-cta {
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.contact-cta p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

/* ============================================
   ABOUT PAGE UPDATES
   ============================================ */

.about-hero {
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.95;
    margin: 0;
}

.about-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a4480;
    margin: 0 0 30px 0;
    text-align: center;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
    user-select: none;
    background: white;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a4480;
    list-style: none;
}

.about-question:hover {
    background: #f8f9fa;
}

.about-question::-webkit-details-marker {
    display: none;
}

.about-question::before {
    content: '▶';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #1a4480;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.about-item[open] .about-question::before {
    transform: rotate(90deg);
}

.about-text {
    font-weight: 600;
    color: #1a4480;
    font-size: 16px;
    flex: 1;
}

.about-answer {
    background: #f8f9fa;
    padding: 0 25px 20px 25px;
    animation: slideDown 0.3s ease;
}

.about-answer p {
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.6;
}

.about-answer p:first-child {
    margin-top: 0;
}

.about-answer p:last-child {
    margin-bottom: 0;
}

.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-section .stat-card {
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(26, 68, 128, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.stats-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(26, 68, 128, 0.3);
}

.stats-section .stat-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -0.02em;
}

.stats-section .stat-label {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.6;
    color: white;
    font-weight: 500;
}

.about-process {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #1a4480;
    box-shadow: 0 8px 16px rgba(26, 68, 128, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a4480 0%, #2c5aa0 100%);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a4480;
    margin: 0 0 10px 0;
}

.process-step p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #1a4480;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: #1a4480;
    box-shadow: 0 4px 12px rgba(26, 68, 128, 0.1);
}

/* Remove old back-to-home styles */
.back-to-home {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 40px 20px;
    }

    .faq-hero h1 {
        font-size: 32px;
    }

    .faq-hero p {
        font-size: 16px;
    }

    .faq-search-box {
        flex-direction: column;
    }

    .faq-search-input,
    .faq-search-btn {
        width: 100%;
    }

    .faq-section-header h2 {
        font-size: 18px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-text {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 16px 20px;
    }

    .faq-cta h2,
    .about-cta h2 {
        font-size: 28px;
    }

    .faq-cta p,
    .about-cta p {
        font-size: 16px;
    }
}

/* Stats Section Responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 20px;
    }
    
    .stats-section .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .stats-section .stat-card {
        padding: 30px 20px;
    }
    
    .stats-section .stat-number {
        font-size: 32px;
    }
    
    .stats-section .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .stats-section {
        padding: 50px 15px;
    }
    
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stats-section .stat-card {
        padding: 25px 15px;
    }
    
    .stats-section .stat-number {
        font-size: 28px;
    }
    
    .stats-section .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 12px;
    }
    
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stats-section .stat-card {
        padding: 20px 12px;
    }
    
    .stats-section .stat-number {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .stats-section .stat-label {
        font-size: 11px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 30px 15px;
    }

    .faq-hero h1 {
        font-size: 24px;
    }

    .faq-hero p {
        font-size: 14px;
    }

    .faq-section-header {
        padding: 20px;
    }

    .faq-section-header h2 {
        font-size: 16px;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-text {
        font-size: 14px;
    }

    .faq-answer ul {
        padding-left: 20px;
    }

    .faq-cta h2,
    .about-cta h2 {
        font-size: 22px;
    }

    .faq-cta p,
    .about-cta p {
        font-size: 14px;
    }
}

/* ============================================
   MOBILE RESPONSIVE - PRIVACY, CONTACT, ABOUT
   ============================================ */

@media (max-width: 768px) {
    /* Privacy Page */
    .privacy-hero {
        padding: 40px 20px;
    }

    .privacy-hero h1 {
        font-size: 32px;
    }

    .privacy-hero p {
        font-size: 16px;
    }

    .privacy-section {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-question {
        padding: 16px 20px;
    }

    .privacy-answer {
        padding: 0 20px 16px 20px;
    }

    /* Contact Page */
    .contact-hero {
        padding: 40px 20px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-section {
        padding: 20px;
    }

    .contact-section h2 {
        font-size: 18px;
    }

    .contact-question {
        padding: 16px 20px;
    }

    .contact-answer {
        padding: 0 20px 16px 20px;
    }

    .contact-faq {
        padding: 20px;
    }

    /* About Page */
    .about-hero {
        padding: 40px 20px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .about-question {
        padding: 16px 20px;
    }

    .about-answer {
        padding: 0 20px 16px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-logo {
        padding: 20px;
        font-size: 12px;
    }

    .privacy-cta h2,
    .contact-cta h2,
    .about-cta h2 {
        font-size: 28px;
    }

    .privacy-cta p,
    .contact-cta p,
    .about-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Privacy Page */
    .privacy-hero {
        padding: 30px 15px;
    }

    .privacy-hero h1 {
        font-size: 24px;
    }

    .privacy-hero p {
        font-size: 14px;
    }

    .privacy-section {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-question {
        padding: 14px 16px;
    }

    .privacy-text {
        font-size: 14px;
    }

    .privacy-answer {
        padding: 0 16px 14px 16px;
    }

    .privacy-answer ul {
        padding-left: 20px;
    }

    /* Contact Page */
    .contact-hero {
        padding: 30px 15px;
    }

    .contact-hero h1 {
        font-size: 24px;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .contact-methods {
        gap: 15px;
    }

    .contact-method {
        padding: 25px 15px;
    }

    .method-icon {
        font-size: 36px;
    }

    .contact-method h3 {
        font-size: 16px;
    }

    .method-title {
        font-size: 12px;
    }

    .method-detail {
        font-size: 14px;
    }

    .contact-sections {
        gap: 15px;
    }

    .contact-section {
        padding: 15px;
    }

    .contact-section h2 {
        font-size: 16px;
    }

    .contact-section p {
        font-size: 14px;
    }

    .contact-question {
        padding: 14px 16px;
    }

    .contact-text {
        font-size: 14px;
    }

    .contact-answer {
        padding: 0 16px 14px 16px;
    }

    .contact-answer p {
        font-size: 14px;
    }

    .contact-faq {
        padding: 15px;
    }

    .contact-faq h2 {
        font-size: 20px;
    }

    /* About Page */
    .about-hero {
        padding: 30px 15px;
    }

    .about-hero h1 {
        font-size: 24px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .about-section {
        padding: 30px 15px;
    }

    .about-section h2 {
        font-size: 20px;
    }

    .about-section p {
        font-size: 14px;
    }

    .about-question {
        padding: 14px 16px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-answer {
        padding: 0 16px 14px 16px;
    }

    .about-answer p {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .process-steps {
        gap: 15px;
    }

    .process-step {
        padding: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .process-step h3 {
        font-size: 14px;
    }

    .process-step p {
        font-size: 12px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .partner-logo {
        padding: 15px;
        font-size: 11px;
    }

    .privacy-cta h2,
    .contact-cta h2,
    .about-cta h2 {
        font-size: 22px;
    }

    .privacy-cta p,
    .contact-cta p,
    .about-cta p {
        font-size: 14px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info p {
        font-size: 14px;
    }
}


/* ============================================
   FORM RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .form-select {
        padding: 12px 14px;
        font-size: 15px;
    }

    .form-section-header {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .form-section-header h4 {
        font-size: 16px;
    }

    .form-section-header p {
        font-size: 13px;
    }

    .form-row {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .form-select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-section-header {
        margin-top: 24px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .form-section-header h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-section-header p {
        font-size: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sub-label {
        font-size: 12px !important;
    }
}
