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

:root {
    --primary: #1E3A8A;
    --primary-hover: #1E40AF;
    --secondary: #DC2626;
    --secondary-hover: #B91C1C;
    --accent: #4B5563;
    --accent-hover: #374151;
    --text: #111827;
    --muted: #6B7280;
    --bg: #ffffff;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    --shadow-hover: 0 8px 24px rgba(30, 58, 138, 0.25);
    --radius: 12px;
    --container-max: 1280px;
    --container-padding: 24px;
    --success: #10B981;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-gradient);
    background-attachment: fixed;
    font-size: 16px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 64px;
}

.logo a {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text);
    text-decoration: underline;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.subscribe-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--accent-hover) 100%);
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

/* Hero Featured Story */
.hero-featured {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 80px 0;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 400;
    max-width: 700px;
}

.hero-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-read-more {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--accent-hover) 100%);
}

/* Latest News Section */
.latest-news {
    padding: 60px 0;
    background-color: var(--bg);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    background-color: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.advertorial-label-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.news-risk-warning {
    background: rgba(211, 47, 47, 0.12);
    border-left: 3px solid #d32f2f;
    border: 1px solid rgba(211, 47, 47, 0.2);
    border-left: 3px solid #d32f2f;
    padding: 10px 14px;
    border-radius: 6px;
    margin: 12px 0;
}

.news-risk-warning small {
    font-size: 11px;
    color: #1a1a1a;
    line-height: 1.5;
    display: block;
    font-weight: 500;
}

.news-risk-warning strong {
    color: #d32f2f;
    font-weight: 700;
    font-size: 11px;
}

.news-affiliate-disclosure {
    padding: 8px 0 0 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.news-affiliate-disclosure small {
    font-size: 10px;
    color: var(--muted);
    font-style: italic;
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.news-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text);
    transition: color 0.3s ease;
}

.news-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-title a:hover {
    color: var(--primary);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.news-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 16px;
    flex: 1;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.news-date {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
}

.news-read-more {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.news-read-more:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.contact-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
    line-height: 1.2;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    max-width: 100%;
}

.contact-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.contact-item-value {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.contact-item-detail {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.contact-address {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    font-style: normal;
    font-family: 'Inter', sans-serif;
}

.contact-form-section {
    max-width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: var(--bg);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background-color: var(--primary-hover);
}

/* Legal Pages */
/* Financial Warning Headers */
.financial-warning-header-desktop {
    background: #d32f2f;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.financial-warning-header-desktop strong {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Advertorial Label */
.advertorial-label {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

/* Risk Warning Box */
.risk-warning-box {
    background: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #d32f2f;
    padding: 14px 18px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #6b7280;
}

.risk-warning-box strong {
    color: #d32f2f;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 10px 14px;
    border-radius: 6px;
    margin-top: 16px;
    text-align: center;
}

.affiliate-disclosure small {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.5;
    display: block;
    font-weight: 500;
}

/* Financial Warning Box (for legal pages) */
.financial-warning-box {
    background-color: #ff0000;
    color: white;
    padding: 20px;
    margin: 20px 0 40px 0;
    border-radius: var(--radius);
    border: 3px solid #cc0000;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.financial-warning-box strong {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.financial-warning-box p {
    margin: 8px 0;
    color: white;
}

.legal-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

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

.legal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.legal-updated {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 48px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    margin-top: 40px;
    line-height: 1.3;
}

.legal-section h2:first-of-type {
    margin-top: 0;
}

.legal-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 12px;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.legal-section strong {
    font-weight: 600;
    color: var(--text);
}

.legal-address {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    font-style: normal;
    margin: 16px 0;
    font-family: 'Inter', sans-serif;
}

/* Article Pages */
.article-page {
    padding: 40px 0 60px;
    background-color: var(--bg);
}

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

.article-header {
    margin-bottom: 32px;
}

.article-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.article-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-meta {
    font-size: 14px;
    color: var(--muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-date {
    font-weight: 400;
}

.article-featured-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.article-body {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.article-lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e5e7eb;
}

.article-body h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-body h2:first-of-type {
    margin-top: 32px;
}

.article-body p {
    margin-bottom: 24px;
    line-height: 1.75;
}

.article-body ul {
    margin-left: 24px;
    margin-bottom: 28px;
    padding-left: 0;
}

.article-body li {
    margin-bottom: 16px;
    line-height: 1.75;
    padding-left: 8px;
}

.article-body strong {
    font-weight: 600;
    color: var(--text);
}

.article-meta-info {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px;
    color: var(--muted);
    font-style: normal;
}

/* Article Details Card */
.article-details-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-details-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.article-details-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.article-detail-item {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.article-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.article-detail-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    min-width: 100px;
    font-family: 'Inter', sans-serif;
}

.article-detail-value {
    font-size: 14px;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

/* Article Newsletter */
.article-newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    padding: 32px;
    margin: 48px 0;
    color: white;
}

.article-newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.article-newsletter-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.article-newsletter-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.article-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 15px;
    background-color: white;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.article-newsletter-form input::placeholder {
    color: var(--muted);
}

.article-newsletter-form button {
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.article-newsletter-form button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.article-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 0;
    margin-top: 100px;
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:first-child {
    grid-column: span 1;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
    text-decoration: none;
}

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

.footer-warning {
    background: rgba(255, 0, 0, 0.15);
    border-left: 3px solid #ff0000;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-top: 16px;
}

.footer-warning strong {
    color: #ff6b6b;
    display: block;
    margin-bottom: 4px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
    text-decoration: none;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-company-name {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-company-name strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.footer-info-item {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-info-item strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    min-width: 120px;
    margin-right: 8px;
}

.footer-address {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-style: normal;
    margin-top: 8px;
    padding-left: 128px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 20px 0;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

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

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

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

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

.footer-fcs-guarantee {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid #10b981;
    padding: 10px 14px;
    border-radius: 6px;
    margin: 16px 0;
}

.footer-fcs-guarantee small {
    font-size: 12px;
    color: #ffffff;
    line-height: 1.5;
    display: block;
}

.footer-fcs-guarantee strong {
    color: #10b981;
    font-weight: 700;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

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

.cookie-accept {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.cookie-accept:hover {
    background-color: var(--primary-hover);
}

/* Subscribe Modal */
.subscribe-modal,
.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.subscribe-modal.show,
.thank-you-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    position: relative;
    background-color: var(--bg);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2001;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
}

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

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    text-align: center;
}

.modal-description {
    font-size: 16px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
}

.subscription-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.plan-card {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: var(--bg);
}

.plan-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.plan-card {
    display: block;
}

.plan-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-card input[type="radio"]:checked ~ .plan-label {
    color: var(--text);
}

.plan-card:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background-color: rgba(37, 99, 235, 0.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.plan-card.plan-recommended {
    border-color: var(--primary);
    border-width: 3px;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-label {
    display: block;
    cursor: pointer;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.plan-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted);
}

.plan-savings {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

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

.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-left: 24px;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.subscribe-form .form-group {
    margin-bottom: 24px;
}

.subscribe-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.subscribe-form .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscribe-form .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.subscribe-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--accent-hover) 100%);
}

/* Thank You Modal */
.thank-you-content {
    text-align: center;
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #10b981;
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-weight: 700;
}

.thank-you-message {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.thank-you-note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.thank-you-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.thank-you-btn:hover {
    background-color: var(--primary-hover);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .section-title {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-accept {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-section:first-child {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-registration {
        text-align: left;
        width: 100%;
    }

    .footer-legal-links {
        width: 100%;
        justify-content: flex-start;
        margin: 8px 0;
    }

    .footer-address {
        padding-left: 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-page-title {
        font-size: 40px;
    }

    .contact-section-title {
        font-size: 28px;
    }

    .subscription-plans {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plan-card.plan-recommended {
        transform: none;
    }

    .modal-content {
        padding: 32px 24px;
        max-width: 95%;
    }

    .modal-title {
        font-size: 28px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
    }

    .financial-warning-header-desktop {
        display: none;
    }

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

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 16px;
        border-top: 1px solid #e5e7eb;
    }

    .nav.active {
        display: flex;
    }

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

    .hero-featured {
        min-height: 500px;
        margin-bottom: 40px;
    }

    .hero-content {
        padding: 60px 0;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .latest-news {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-image {
        height: 220px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-text h3 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-accept {
        width: 100%;
        padding: 14px 24px;
    }

    .footer {
        padding: 50px 0 30px;
        margin-top: 60px;
    }

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

    .footer-section:first-child {
        grid-column: span 1;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .footer-warning {
        font-size: 11px;
        padding: 10px 14px;
    }

    .footer-info-item {
        font-size: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-info-item strong {
        min-width: auto;
        margin-bottom: 4px;
    }

    .footer-address {
        padding-left: 0;
        font-size: 12px;
    }

    .footer-description {
        font-size: 13px;
    }

    .advertorial-label {
        font-size: 10px;
        padding: 5px 10px;
        margin-left: 8px;
    }

    .risk-warning-box {
        font-size: 12px;
        padding: 12px 14px;
    }

    .affiliate-disclosure {
        padding: 8px 12px;
    }

    .affiliate-disclosure small {
        font-size: 10px;
    }

    .news-risk-warning {
        padding: 6px 10px;
    }

    .news-risk-warning small {
        font-size: 9px;
    }

    .news-affiliate-disclosure small {
        font-size: 9px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        gap: 12px;
    }

    .contact-page {
        padding: 40px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .contact-section-title {
        font-size: 24px;
    }

    .contact-intro {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .contact-item {
        margin-bottom: 24px;
    }

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

    .plan-card {
        padding: 20px;
    }

    .plan-name {
        font-size: 20px;
    }

    .plan-price {
        font-size: 28px;
    }

    .modal-content {
        padding: 24px 20px;
    }

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

    .modal-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .contact-page-title {
        font-size: 28px;
    }

    .contact-section-title {
        font-size: 22px;
    }

    .news-title {
        font-size: 20px;
    }

    .legal-page {
        padding: 40px 0;
    }

    .legal-title {
        font-size: 36px;
    }

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

    .legal-section h3 {
        font-size: 18px;
    }

    .article-page {
        padding: 30px 0 40px;
    }

    .article-content {
        max-width: 100%;
    }

    .article-title {
        font-size: 28px;
    }

    .article-body {
        font-size: 16px;
    }

    .article-body h2 {
        font-size: 24px;
        margin-top: 36px;
    }

    .article-lead {
        font-size: 18px;
    }

    .article-details-card {
        padding: 20px;
    }

    .article-newsletter {
        padding: 24px;
    }

    .article-newsletter-form {
        flex-direction: column;
    }

    .article-newsletter-form input,
    .article-newsletter-form button {
        width: 100%;
    }
}