:root {
    --primary-color: #F7931A;
    --secondary-color: #FFD700;
    --text-color: #c9d1d9;
    --text-muted: #8b949e;
    --bg-light: #0d1117;
    --white: #ffffff;
    --success-color: #00d084;
    --border-color: #30363d;
    --dark-bg: #161b22;
    --card-bg: #21262d;
    --yellow-glow: rgba(247, 147, 26, 0.3);
    --header-bg: #161b22;
    --body-bg: #0d1117;
}

* {
    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);
    background: var(--body-bg);
}

/* Header */
.header {
    background: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-color);
    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 img.logo-main {
    height: 40px;
    width: auto;
    display: block;
}

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

.logo-sub {
    color: var(--secondary-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: var(--card-bg);
    border: 1px solid var(--border-color);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
    color: var(--text-color);
}

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

.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;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    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(--dark-bg);
}

/* Search Toggle */
.search-toggle {
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.3);
    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(--secondary-color) 100%);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
}

/* Search Box */
.search-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--header-bg) 0%, var(--dark-bg) 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    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(--card-bg);
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 2px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 25px rgba(247, 147, 26, 0.2);
}

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

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

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

.search-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--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, #e8850a 0%, #e6c200 100%);
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.4);
}

.search-close {
    background: rgba(247, 147, 26, 0.1);
    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(247, 147, 26, 0.2);
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* 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(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--body-bg);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e8850a 0%, #e6c200 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(247, 147, 26, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.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(--white);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(247, 147, 26, 0.3);
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--text-color);
}

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

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* 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(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid var(--border-color);
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.1);
    border-color: var(--primary-color);
}

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

.provider-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-bg);
    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: rgba(247, 147, 26, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(247, 147, 26, 0.2);
}

.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(--secondary-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;
}

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

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

.article-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.1);
    border-color: var(--primary-color);
}

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

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

.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(--card-bg);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    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(--body-bg);
}

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

.comparison-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.comparison-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.1);
    border-color: var(--primary-color);
}

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

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

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

.comparison-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Rates List */
.rates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rates-item {
    background: var(--card-bg);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.rates-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.1);
}

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

.rates-info p {
    color: var(--text-muted);
}

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

.faq-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.faq-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.1);
}

.faq-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

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

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

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

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

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

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    color: var(--body-bg);
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

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

.trust-item p {
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.disclaimer-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

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

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

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--secondary-color);
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumb-list .current {
    color: var(--text-color);
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--body-bg) 0%, var(--dark-bg) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.page-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(247, 147, 26, 0.2);
}

.page-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Article Detail */
.article-detail-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-detail-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}

.article-detail-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-detail-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(247, 147, 26, 0.2);
    margin-bottom: 20px;
}

.article-detail-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.article-detail-content {
    line-height: 1.9;
    color: var(--text-color);
    font-size: 16px;
}

.article-detail-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.article-detail-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.article-detail-content p {
    margin-bottom: 20px;
}

.article-detail-content ul,
.article-detail-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-detail-content li {
    margin-bottom: 8px;
}

.article-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.article-detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.article-detail-content a:hover {
    border-bottom-color: var(--primary-color);
}

.article-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 15px 25px;
    margin: 25px 0;
    background: var(--dark-bg);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-color);
}

.article-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.article-detail-content th,
.article-detail-content td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.article-detail-content th {
    background: var(--dark-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.article-detail-content td {
    background: var(--card-bg);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--body-bg);
    border-color: var(--primary-color);
}

.pagination .current {
    background: var(--primary-color);
    color: var(--body-bg);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 0px 20px 0px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .provider-grid,
    .articles-grid,
    .comparison-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .article-detail-card {
        padding: 30px 20px;
    }
    
    .article-detail-title {
        font-size: 28px;
    }
}
