:root {
    /* 主色调 - 专业金融蓝 */
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --primary-dark: #0d1b2a;
    
    /* 辅助色 - 金色强调 */
    --accent-color: #c9a227;
    --accent-light: #d4b43a;
    
    /* 中性色 */
    --text-color: #2d3748;
    --text-muted: #718096;
    --text-light: #a0aec0;
    
    /* 背景色 */
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-dark: #1a202c;
    
    /* 功能色 */
    --success-color: #276749;
    --warning-color: #c05621;
    --error-color: #c53030;
    
    /* 边框 */
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    
    /* 阴影 */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'OpenSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-main {
    color: var(--primary-color);
}

.logo-sub {
    color: var(--accent-color);
    font-size: 18px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.lang-toggle:hover {
    background: var(--bg-light);
}

.lang-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-code {
    font-size: 14px;
    font-weight: 500;
}

.lang-arrow {
    width: 16px;
    height: 16px;
}

/* Search Toggle */
.search-toggle {
    background: linear-gradient(135deg, rgba(26,54,93,0.1) 0%, rgba(26,54,93,0.05) 100%);
    border: 1px solid rgba(26,54,93,0.2);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.search-toggle:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Search Box */
.search-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    box-shadow: var(--shadow-lg);
    padding: 25px 0;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    border-bottom: 3px solid var(--primary-color);
}

.search-box.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    background: var(--bg-white);
    padding: 5px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.search-input {
    flex: 1;
    padding: 14px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: transparent;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.search-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    gap: 8px;
}

.search-submit:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateX(3px);
    box-shadow: var(--shadow-md);
}

.search-submit:active {
    transform: translateX(1px);
}

.search-close {
    background: rgba(0,0,0,0.05);
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    background: rgba(197,48,48,0.1);
    color: var(--error-color);
    transform: rotate(90deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    list-style: none;
    min-width: 150px;
    display: none;
    z-index: 1001;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.3s;
}

.lang-option:hover,
.lang-option.active {
    background: var(--bg-light);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Main Content */
.main-content {
    padding-top: 70px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/logo.png') center/cover;
    opacity: 0.1;
}

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

.hero-text {
    color: var(--bg-white);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

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

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 18px;
}

/* Provider Cards */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.provider-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid var(--border-light);
}

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

.provider-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.provider-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.provider-info h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.provider-info .provider-type {
    font-size: 14px;
    color: var(--text-muted);
}

.provider-features {
    list-style: none;
    margin-bottom: 20px;
}

.provider-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

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

.provider-rate {
    background: linear-gradient(135deg, var(--bg-light), var(--border-light));
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.provider-rate .rate-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.provider-rate .rate-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.provider-actions {
    display: flex;
    gap: 10px;
}

.provider-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.provider-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
}

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

.provider-actions .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Official Badge */
.official-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(39, 103, 73, 0.1);
    color: var(--success-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Article Cards */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-light);
}

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

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.article-tag {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.article-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.article-title a {
    color: var(--text-color);
    text-decoration: none;
}

.article-title a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Articles Swiper */
.articles-swiper {
    padding: 20px 10px 50px 10px;
}

.articles-swiper .swiper-slide {
    height: auto;
}

.articles-swiper .swiper-pagination {
    bottom: 0;
}

.articles-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    opacity: 1;
}

.articles-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.articles-swiper .swiper-button-prev,
.articles-swiper .swiper-button-next {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.articles-swiper .swiper-button-prev:hover,
.articles-swiper .swiper-button-next:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.articles-swiper .swiper-button-prev:after,
.articles-swiper .swiper-button-next:after {
    display: none;
}

.articles-swiper .swiper-button-prev iconify-icon,
.articles-swiper .swiper-button-next iconify-icon {
    font-size: 24px;
}

.articles-swiper .swiper-button-prev {
    left: -10px;
}

.articles-swiper .swiper-button-next {
    right: -10px;
}

@media (max-width: 768px) {
    .articles-swiper .swiper-button-prev,
    .articles-swiper .swiper-button-next {
        display: none;
    }
}

/* Featured Article */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
}

.featured-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.featured-excerpt {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-list .current {
    color: var(--text-muted);
}

.breadcrumb-separator {
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 140px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 80px 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.trust-icon iconify-icon {
    color: var(--accent-color);
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.trust-item p {
    opacity: 0.8;
    font-size: 15px;
}

/* Disclaimer */
.disclaimer-section {
    background: var(--bg-light);
    padding: 40px 20px;
    border-top: 3px solid var(--accent-color);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    color: var(--warning-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 20px 20px 30px;
}

/* Footer Subscribe Section */
.footer-subscribe-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

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

.subscribe-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.subscribe-desc {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.subscribe-form {
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.subscribe-step1,
.subscribe-step2 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-input {
    flex: 1;
    min-width: 220px;
    padding: 16px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 15px;
    background: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.3), var(--shadow-md);
    transform: translateY(-2px);
}

.subscribe-input::placeholder {
    color: var(--text-light);
}

.subscribe-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.subscribe-btn:hover:not(:disabled)::before {
    left: 100%;
}

.subscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.subscribe-btn-secondary {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border: 2px solid rgba(255,255,255,0.4);
}

.subscribe-btn-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
    border-color: rgba(255,255,255,0.6);
}

.subscribe-message {
    margin-top: 20px;
    font-size: 14px;
    min-height: 24px;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.subscribe-message.success {
    color: var(--primary-dark);
    background: rgba(39, 103, 73, 0.9);
    font-weight: 600;
}

.subscribe-message.error {
    color: var(--bg-white);
    background: rgba(197, 48, 48, 0.9);
    font-weight: 500;
}

.subscribe-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.subscribe-btn-secondary {
    background: rgba(255,255,255,0.2);
}

.subscribe-btn-secondary:hover:not(:disabled) {
    background: rgba(255,255,255,0.3);
}

.subscribe-message {
    margin-top: 15px;
    font-size: 14px;
    min-height: 20px;
}

.subscribe-message.success {
    color: var(--success-color);
}

.subscribe-message.error {
    color: var(--error-color);
}

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

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--primary-light);
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-contact-info p iconify-icon {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--primary-light);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .search-box .header-container {
        flex-direction: row;
        padding: 15px 20px;
    }
    
    .search-form {
        flex: 1;
        border-radius: 12px;
    }
    
    .search-input {
        padding: 12px 18px;
    }
    
    .search-submit {
        padding: 12px 20px;
    }
    
    .footer-subscribe-section {
        padding: 40px 20px;
    }
    
    .subscribe-form {
        padding: 20px;
        border-radius: 16px;
    }
    
    .subscribe-title {
        font-size: 24px;
    }
    
    .subscribe-step1,
    .subscribe-step2 {
        flex-direction: column;
        gap: 10px;
    }
    
    .subscribe-input {
        width: 100%;
        min-width: auto;
        padding: 14px 20px;
    }
    
    .subscribe-btn {
        width: 100%;
        padding: 14px 24px;
    }
    
    .subscribe-message {
        width: 100%;
        border-radius: 12px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .provider-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .provider-actions {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 28px;
    }
}

/* Pagination Styles */
.pages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.pages ul {
    display: flex;
    list-style: none;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.pages li {
    margin: 0;
}

.pages a,
.pages span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-color);
}

.pages a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pages .current {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    font-weight: 600;
}

.pages .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Pagination arrows */
.pages li:first-child a,
.pages li:last-child a {
    font-weight: 600;
    padding: 0 16px;
}

/* Mobile pagination */
@media (max-width: 768px) {
    .pages {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .pages a,
    .pages span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
}

/* ThinkPHP Default Pagination Compatibility */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.pagination li {
    margin: 0;
    display: inline-block;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-color);
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination .active span {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    font-weight: 600;
}

.pagination .disabled span {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile pagination compatibility */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
}

/* ============================================
   Blog List Page Styles
   ============================================ */

/* Featured Post */
.featured-post {
    padding: 60px 0;
    background: var(--bg-light);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
}

.featured-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
}

/* Blog Grid */
.blog-section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    color: var(--primary-color);
}

.category-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--bg-light);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 60px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 13px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-white {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state .empty-icon {
    font-size: 64px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Blog List Responsive */
@media (max-width: 768px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 250px;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .featured-content h2 {
        font-size: 24px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* ============================================
   Apply Page - Provider List Styles
   ============================================ */

.provider-section {
    padding: 60px 20px;
}

.provider-section:nth-child(even) {
    background: var(--bg-light);
}

.provider-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.provider-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 25px;
    align-items: start;
}

.provider-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.provider-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.provider-content {
    flex: 1;
    min-width: 0;
}

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

.provider-header h3 {
    font-size: 20px;
    color: var(--text-color);
    margin: 0;
}

.provider-type {
    font-size: 13px;
    color: var(--text-light);
}

.official-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(39, 103, 73, 0.1);
    color: var(--success-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.provider-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.provider-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-features span {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 4px;
}

.provider-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 160px;
}

.provider-params {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
}

.provider-param {
    text-align: center;
}

.provider-param .param-label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.provider-param .param-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.provider-param .param-value.highlight {
    color: var(--accent-color);
    font-size: 16px;
}

.provider-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.provider-actions .btn {
    padding: 10px 16px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.provider-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
}

.provider-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
}

.provider-actions .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.provider-actions .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Apply Page - Trust Section */
.apply-trust-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 60px 20px;
}

.apply-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.apply-trust-item {
    padding: 20px;
}

.apply-trust-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.apply-trust-icon iconify-icon {
    color: var(--accent-color);
}

.apply-trust-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.apply-trust-item p {
    opacity: 0.8;
    font-size: 14px;
}

/* Apply Page - Disclaimer */
.apply-disclaimer-section {
    background: var(--bg-light);
    padding: 40px 20px;
    border-top: 3px solid var(--accent-color);
}

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

.apply-disclaimer-content h3 {
    color: var(--warning-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apply-disclaimer-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* Apply Page - Responsive */
@media (max-width: 992px) {
    .provider-item {
        grid-template-columns: 70px 1fr;
    }
    
    .provider-right {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
    }
    
    .provider-params {
        flex: 1;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .provider-actions {
        flex-direction: row;
        min-width: 220px;
    }
    
    .provider-actions .btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .provider-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .provider-logo {
        margin: 0 auto;
    }
    
    .provider-right {
        flex-direction: column;
        width: 100%;
    }
    
    .provider-params {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .provider-actions {
        width: 100%;
        flex-direction: row;
    }
}

/* ============================================
   Provider List Page - Additional Styles
   ============================================ */

/* Filter Section */
.filter-section {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-label {
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.filter-label iconify-icon {
    vertical-align: middle;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* Provider List Header */
.provider-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.provider-list-header .section-title {
    margin-bottom: 5px;
}

.provider-list-header .section-subtitle {
    margin: 0;
}

.btn-browse-tags {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-browse-tags:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Provider Website Link */
.provider-website {
    margin-top: 8px;
}

.provider-website-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-size: 13px;
    text-decoration: none;
}

.provider-website-link:hover {
    text-decoration: underline;
}

/* Provider Tags */
.provider-tags {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.provider-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.provider-tag:hover {
    opacity: 0.8;
}

/* Pagination Center */
.pagination-center {
    margin-top: 40px;
    text-align: center;
}

/* Submit Button */
.btn-submit-institution {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-submit-institution:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--bg-white);
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    margin: 0;
    font-size: 22px;
    color: var(--text-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

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

.modal-body {
    padding: 30px;
}

.form-section {
    margin-bottom: 25px;
}

.form-section-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

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

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

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text-muted);
}

.form-label-required {
    color: var(--error-color);
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn-cancel {
    padding: 12px 24px;
    background: var(--bg-light);
    color: var(--text-muted);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: var(--border-color);
}

.btn-submit {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .provider-list-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        width: 95%;
    }
}

/* ============================================
   Pending Review Section Styles
   ============================================ */

.pending-review-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-color) 100%);
    padding: 40px 0;
}

.pending-review-section .section-title,
.pending-review-section .section-subtitle {
    text-align: center;
}

.pending-review-section .section-subtitle {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.pending-docs-container {
    max-width: 900px;
    margin: 0 auto;
}

.pending-doc-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pending-doc-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pending-doc-link {
    text-decoration: none;
}

.pending-doc-main {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.pending-doc-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 600;
}

.pending-doc-content {
    flex: 1;
}

.pending-doc-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.pending-doc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pending-doc-feature {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 3px 8px;
    border-radius: 4px;
}

.pending-doc-feature-highlight {
    font-size: 12px;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.pending-doc-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}

.pending-doc-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pending-doc-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pending-doc-status {
    background: rgba(192, 86, 33, 0.1);
    color: var(--warning-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pending-doc-arrow {
    color: var(--border-color);
}

/* Form Input Small Variant */
.form-input-sm {
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
}

.form-label-sm {
    font-size: 13px;
    color: var(--text-muted);
}

/* Verify Code Button */
.btn-verify-code {
    width: 100%;
    padding: 12px;
    background: var(--success-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-verify-code:hover {
    background: #276749;
}

/* File Input */
.form-file-input {
    width: 100%;
    padding: 10px;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
}

/* Grid Layout for Form */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 10px;
}

.form-grid-align-end {
    display: flex;
    align-items: flex-end;
}

/* ============================================
   Article Detail Page Styles
   ============================================ */

.article-detail-section {
    background: var(--bg-light);
}

.article-detail-website {
    margin-top: 15px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.article-detail-website iconify-icon {
    color: var(--primary-color);
}

.article-detail-website-link {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.article-detail-website-link:hover {
    text-decoration: underline;
}

.article-detail-website-label {
    color: var(--text-light);
    font-size: 12px;
    margin-left: 5px;
}

.article-tags-section {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.article-tags-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.article-tags-label {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   Custom Toast Styles (from base.html)
   ============================================ */
.custom-toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.custom-toast-overlay.active {
    opacity: 1;
    visibility: visible;
}
.custom-toast {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px 40px;
    min-width: 320px;
    max-width: 450px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.custom-toast-overlay.active .custom-toast {
    transform: scale(1) translateY(0);
}
.custom-toast-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--bg-white);
}
.custom-toast-icon.success {
    background: linear-gradient(135deg, var(--success-color) 0%, #1a4731 100%);
}
.custom-toast-icon.error {
    background: linear-gradient(135deg, var(--error-color) 0%, #742a2a 100%);
}
.custom-toast-icon.info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}
.custom-toast-icon.warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #7c2d12 100%);
}
.custom-toast-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}
.custom-toast-message {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}
.custom-toast-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.custom-toast-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.custom-toast-btn.success {
    background: linear-gradient(135deg, var(--success-color) 0%, #1a4731 100%);
}
.custom-toast-btn.success:hover {
    box-shadow: var(--shadow-md);
}
.custom-toast-btn.error {
    background: linear-gradient(135deg, var(--error-color) 0%, #742a2a 100%);
}
.custom-toast-btn.error:hover {
    box-shadow: var(--shadow-md);
}

/* ============================================
   Compact Subscribe Section Styles
   ============================================ */
.footer-subscribe-section-compact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 20px 0;
}
.subscribe-message-compact {
    text-align: center;
    margin-bottom: 10px;
    color: var(--bg-white);
}
.subscribe-form-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.subscribe-label-compact {
    color: var(--bg-white);
    font-weight: 600;
    white-space: nowrap;
}
.subscribe-input-group-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}
.subscribe-input-compact {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}
.subscribe-input-center {
    text-align: center;
}
.subscribe-btn-compact {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-weight: 600;
}
.subscribe-btn-compact:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
}
.subscribe-btn-secondary-compact {
    padding: 10px 20px;
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}
.subscribe-btn-secondary-compact:hover {
    background: rgba(255,255,255,0.2);
}
.hidden {
    display: none !important;
}

/* ============================================
   Hero Section Compact Styles (from index.html)
   ============================================ */
.hero-section-compact {
    max-height: 450px;
    padding: 30px 0;
    min-height: auto;
    height: auto;
}
.hero-content-compact {
    gap: 30px;
    align-items: flex-start;
    padding-top: 20px;
}
.hero-title-compact {
    font-size: 32px;
    margin-bottom: 12px;
}
.hero-desc-compact {
    font-size: 15px;
    margin-bottom: 20px;
}
.hero-image-full {
    height: 100%;
    width: 100%;
}
.blog-swiper-container {
    width: 100%;
    height: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.blog-swiper-pagination {
    position: absolute;
    top: auto;
    bottom: 10px;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    padding: 5px 10px;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}
.swiper-slide-full {
    height: 100%;
}
.blog-slide-img-full {
    height: 100%;
}

/* ============================================
   Provider Tags Top Position
   ============================================ */
.provider-tags-top {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-end;
    max-width: 60%;
}
.provider-tag-small {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.provider-tag-small:hover {
    opacity: 0.8;
}

/* ============================================
   Section Background Utilities
   ============================================ */
.section-bg-light {
    background: var(--bg-light);
}
.text-center-mt-40 {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   Blog Article Tags
   ============================================ */
.article-tags-inline {
    margin: 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* ============================================
   Privacy/Terms Page Styles
   ============================================ */
.legal-section {
    background: var(--bg-light);
    min-height: 60vh;
}

/* ============================================
   Loan Comparison Page Styles
   ============================================ */
.filter-bar-section {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.filter-bar-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.filter-label-with-icon {
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}
.filter-label-with-icon iconify-icon {
    vertical-align: middle;
}
.filter-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.filter-tag-item:hover,
.filter-tag-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.provider-list-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.provider-list-header-flex .section-title {
    margin-bottom: 5px;
}
.provider-list-header-flex .section-subtitle {
    margin: 0;
}
.btn-browse-tags {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-browse-tags:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,119,204,0.3);
}
.provider-logo-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   Modal Form Styles
   ============================================ */
.modal-form-section {
    margin-bottom: 25px;
}
.modal-form-section-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}
.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.modal-form-group {
    margin-bottom: 15px;
}
.modal-form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text-muted);
}
.modal-form-label-required {
    color: var(--error-color);
}
.modal-form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
}
.modal-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.modal-form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
}
.modal-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.modal-form-file {
    width: 100%;
    padding: 10px;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
}
.modal-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.modal-form-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.modal-form-input-sm {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
}
.modal-form-input-sm:focus {
    outline: none;
    border-color: var(--primary-color);
}
.modal-form-label-sm {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--text-muted);
}
.btn-verify-code {
    width: 100%;
    padding: 12px;
    background: var(--success-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-verify-code:hover {
    background: #1a4731;
}
.modal-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}
.btn-cancel-modal {
    padding: 12px 24px;
    background: var(--bg-light);
    color: var(--text-muted);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-cancel-modal:hover {
    background: var(--border-color);
}
.btn-submit-modal {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-submit-modal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   Tags List Page Styles
   ============================================ */
.tags-breadcrumb-label {
    color: var(--text-muted);
    font-size: 14px;
}
.tag-cloud-item {
    font-size: 14px;
}
.tag-cloud-count-bg {
    background: var(--primary-color);
    color: var(--bg-white);
}
.tag-category-icon-gradient-1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}
.tag-category-icon-gradient-2 {
    background: linear-gradient(135deg, var(--success-color) 0%, #1a4731 100%);
}
.tag-category-icon-gradient-3 {
    background: linear-gradient(135deg, var(--error-color) 0%, #742a2a 100%);
}
.tag-category-icon-gradient-4 {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}
.tag-category-icon-gradient-5 {
    background: linear-gradient(135deg, var(--warning-color) 0%, #7c2d12 100%);
}
.tag-btn-gradient-1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}
.tag-btn-gradient-2 {
    background: linear-gradient(135deg, var(--success-color) 0%, #1a4731 100%);
}
.tag-btn-gradient-3 {
    background: linear-gradient(135deg, var(--error-color) 0%, #742a2a 100%);
}
.tag-btn-gradient-4 {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}
.tag-btn-gradient-5 {
    background: linear-gradient(135deg, var(--warning-color) 0%, #7c2d12 100%);
}

/* ============================================
   Detail Apply Page Styles
   ============================================ */
.detail-apply-tag {
    transition: all 0.3s ease;
}
.detail-apply-tag:hover {
    opacity: 0.8;
}

/* Mobile Responsive for Modal Forms */
@media (max-width: 768px) {
    .modal-form-row,
    .modal-form-grid-2,
    .modal-form-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Hero Blog Styles (from index.html)
   ============================================ */
.hero-blog {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.blog-item:hover {
    color: white;
}

.blog-item iconify-icon {
    flex-shrink: 0;
    color: var(--accent-color);
}

.blog-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-date {
    flex-shrink: 0;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

/* Blog Swiper Styles */
.blog-swiper {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.blog-slide {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-slide-img {
    height: 100%;
    overflow: hidden;
}

.blog-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-slide:hover .blog-slide-img img {
    transform: scale(1.05);
}

.blog-slide-content {
    padding: 20px;
    background: white;
}

.blog-slide-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    margin-bottom: 10px;
}

.blog-slide-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-slide-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-swiper .swiper-pagination {
    position: relative;
    bottom: 0;
    padding: 10px 0;
    background: var(--bg-white);
}

.blog-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border-color);
    opacity: 1;
}

.blog-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-blog {
        display: none;
    }
    
    .blog-swiper {
        max-width: 100% !important;
    }
}

/* ============================================
   Comparison Grid Styles (from index.html)
   ============================================ */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.comparison-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.comparison-header {
    margin-bottom: 15px;
}

.comparison-header h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.comparison-date {
    font-size: 13px;
    color: var(--text-light);
}

.comparison-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Rates List */
.rates-list {
    max-width: 900px;
    margin: 0 auto;
}

.rates-item {
    background: var(--bg-white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.rates-item:hover {
    transform: translateX(5px);
}

.rates-info h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.rates-info p {
    color: var(--text-muted);
    font-size: 15px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faq-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.faq-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.faq-icon iconify-icon {
    color: var(--accent-color);
}

.faq-card h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 12px;
}

.faq-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-card a:hover {
    text-decoration: underline;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card-v2 {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.article-card-v2 .article-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
}

.article-title-v2 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-title-v2 a {
    color: var(--text-color);
    text-decoration: none;
}

.article-title-v2 a:hover {
    color: var(--primary-color);
}

.article-excerpt-v2 {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
}

.article-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* ============================================
   FAQ List Page Styles
   ============================================ */
.faq-item {
    background: var(--bg-white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 iconify-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.faq-item-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

.faq-read-more {
    color: var(--accent-color);
    font-weight: 600;
    margin-left: 8px;
}

.faq-empty {
    text-align: center;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
}

.faq-empty p {
    color: var(--text-muted);
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 991px) {
    .comparison-grid,
    .faq-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .comparison-grid,
    .faq-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .rates-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ============================================
   Cookie Consent Banner Styles
   ============================================ */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

.cookie-consent-text iconify-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
}

.cookie-consent-text a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-consent-text a:hover {
    color: var(--accent-light);
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.cookie-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--bg-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        flex-direction: column;
        text-align: center;
        min-width: auto;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}