/* ================================
   Economic Digest Canada - Modern CSS
   Color Palette: Deep Midnight Blue, Electric Cyan, Warm Amber
   ================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #F1F5F9;
    background: #0B1C2D;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0B1C2D 0%, #1a2f45 100%);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(31, 255, 224, 0.15);
    z-index: 10000;
    border-top: 2px solid #1FFFE0;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    color: #94A3B8;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: #1FFFE0;
    font-size: 14px;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #FFB703;
}

.cookie-accept {
    background: linear-gradient(135deg, #1FFFE0 0%, #00d4b8 100%);
    color: #0B1C2D;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(31, 255, 224, 0.4);
}

/* ===== HEADER ===== */
.header {
    background: rgba(11, 28, 45, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(31, 255, 224, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #1FFFE0 0%, #FFB703 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

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

.nav-link {
    color: #F1F5F9;
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1FFFE0;
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, #FFB703 0%, #ff9500 100%);
    padding: 8px 20px;
    border-radius: 6px;
    color: #0B1C2D;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.menu-btn {
    font-size: 24px;
    color: #1FFFE0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    border-top: 1px solid rgba(31, 255, 224, 0.2);
    animation: fadeIn 0.3s ease;
}

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

.mobile-nav-link {
    color: #F1F5F9;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(31, 255, 224, 0.1);
    color: #1FFFE0;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 28, 45, 0.85) 0%, rgba(11, 28, 45, 0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: heroFadeIn 1s ease-out;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1FFFE0 0%, #FFB703 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #94A3B8;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1FFFE0 0%, #00d4b8 100%);
    color: #0B1C2D;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(31, 255, 224, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(31, 255, 224, 0.5);
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1FFFE0 0%, #FFB703 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: #94A3B8;
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(180deg, #0B1C2D 0%, #0f2438 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-card {
    background: linear-gradient(135deg, #1a2f45 0%, #0B1C2D 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(31, 255, 224, 0.2);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #1FFFE0;
    box-shadow: 0 10px 30px rgba(31, 255, 224, 0.2);
}

.about-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1FFFE0;
}

.about-card p {
    color: #94A3B8;
    line-height: 1.7;
}

/* ===== JOURNALS SECTION ===== */
.journals-section {
    background: #0B1C2D;
}

.journals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.journal-card {
    background: linear-gradient(135deg, #1a2f45 0%, #0f2438 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(31, 255, 224, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.journal-card:hover {
    transform: translateY(-8px);
    border-color: #1FFFE0;
    box-shadow: 0 15px 40px rgba(31, 255, 224, 0.3);
}

.journal-card.featured {
    border-color: #FFB703;
}

.journal-card.featured:hover {
    border-color: #FFB703;
    box-shadow: 0 15px 40px rgba(255, 183, 3, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFB703 0%, #ff9500 100%);
    color: #0B1C2D;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.journal-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.journal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(11, 28, 45, 0.9), transparent);
}

.journal-content {
    padding: 30px;
}

.journal-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1FFFE0;
}

.journal-content > p {
    color: #94A3B8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.journal-features {
    list-style: none;
    margin-bottom: 25px;
}

.journal-features li {
    padding: 8px 0;
    color: #F1F5F9;
    position: relative;
    padding-left: 25px;
}

.journal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1FFFE0;
    font-weight: 700;
}

.journal-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFB703 0%, #ff9500 100%);
    color: #0B1C2D;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.journal-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
}

/* ===== INSIGHTS SECTION ===== */
.insights-section {
    background: linear-gradient(135deg, #1a2f45 0%, #0B1C2D 100%);
}

.insights-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.insights-text {
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.insights-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.insight-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #F1F5F9;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #1FFFE0;
    color: #0B1C2D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.insights-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.insight-box {
    background: linear-gradient(135deg, #0B1C2D 0%, #1a2f45 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #1FFFE0;
    transition: all 0.3s ease;
}

.insight-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(31, 255, 224, 0.3);
}

.insight-number {
    font-size: 48px;
    font-weight: 800;
    color: #FFB703;
    margin-bottom: 10px;
}

.insight-label {
    color: #94A3B8;
    font-size: 14px;
}

@media (max-width: 768px) {
    .insights-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: #0B1C2D;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #1a2f45 0%, #0f2438 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(31, 255, 224, 0.2);
    transition: all 0.3s ease;
    animation: statPulse 3s ease-in-out infinite;
}

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

.stat-card:hover {
    border-color: #1FFFE0;
    box-shadow: 0 10px 30px rgba(31, 255, 224, 0.3);
    animation: none;
    transform: scale(1.05);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #1FFFE0 0%, #FFB703 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #94A3B8;
    font-size: 16px;
    font-weight: 500;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: linear-gradient(180deg, #0f2438 0%, #0B1C2D 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: linear-gradient(135deg, #1a2f45 0%, #0B1C2D 100%);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(31, 255, 224, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #FFB703;
    box-shadow: 0 10px 30px rgba(255, 183, 3, 0.2);
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1FFFE0;
}

.benefit-item p {
    color: #94A3B8;
    line-height: 1.7;
    font-size: 15px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #0B1C2D;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a2f45 0%, #0f2438 100%);
    border-radius: 8px;
    border: 1px solid rgba(31, 255, 224, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #1FFFE0;
}

.faq-checkbox {
    display: none;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    color: #F1F5F9;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #1FFFE0;
}

.faq-toggle {
    font-size: 24px;
    color: #1FFFE0;
    flex-shrink: 0;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #94A3B8;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-checkbox:checked ~ .faq-question .faq-toggle {
    transform: rotate(45deg);
}

.faq-checkbox:checked ~ .faq-question {
    color: #1FFFE0;
}

.faq-item:has(.faq-checkbox:checked) {
    border-color: #1FFFE0;
    box-shadow: 0 4px 15px rgba(31, 255, 224, 0.2);
}

/* ===== ORDER SECTION ===== */
.order-section {
    background: linear-gradient(135deg, #1a2f45 0%, #0B1C2D 100%);
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1FFFE0;
}

.order-description {
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-benefit {
    color: #F1F5F9;
    font-size: 16px;
    padding-left: 25px;
    position: relative;
}

.order-benefit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #1FFFE0;
    border-radius: 50%;
}

.order-form-wrapper {
    background: linear-gradient(135deg, #0B1C2D 0%, #1a2f45 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid rgba(31, 255, 224, 0.3);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    color: #F1F5F9;
    font-weight: 600;
    font-size: 14px;
}

.form-input,
.form-select {
    padding: 12px 15px;
    background: rgba(11, 28, 45, 0.6);
    border: 1px solid rgba(31, 255, 224, 0.3);
    border-radius: 6px;
    color: #F1F5F9;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #1FFFE0;
    box-shadow: 0 0 0 3px rgba(31, 255, 224, 0.1);
}

.form-select option {
    color: black;
    background-color: white;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94A3B8;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1FFFE0;
}

.checkbox-label a {
    color: #1FFFE0;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #FFB703;
}

.form-submit {
    background: linear-gradient(135deg, #1FFFE0 0%, #00d4b8 100%);
    color: #0B1C2D;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 255, 224, 0.4);
}

@media (max-width: 768px) {
    .order-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .order-form-wrapper {
        padding: 30px 20px;
    }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: #0B1C2D;
}

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

.trust-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1FFFE0;
}

.trust-text {
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 16px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    background: linear-gradient(135deg, #1a2f45 0%, #0f2438 100%);
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid rgba(31, 255, 224, 0.3);
    color: #F1F5F9;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: #1FFFE0;
    box-shadow: 0 4px 15px rgba(31, 255, 224, 0.2);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f2438 0%, #0B1C2D 100%);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(31, 255, 224, 0.2);
}

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

.footer-heading {
    color: #1FFFE0;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-text {
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #94A3B8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #1FFFE0;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(31, 255, 224, 0.1);
}

.footer-bottom p {
    color: #94A3B8;
    font-size: 14px;
}

/* ===== POLICY PAGES ===== */
.policy-page {
    min-height: 100vh;
    padding: 100px 0 50px;
}

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

.policy-box {
    background: linear-gradient(135deg, #1a2f45 0%, #0f2438 100%);
    padding: 50px;
    border-radius: 12px;
    border: 2px solid rgba(31, 255, 224, 0.3);
}

.policy-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1FFFE0 0%, #FFB703 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-content h2 {
    color: #1FFFE0;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h3 {
    color: #FFB703;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.policy-content p {
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
    color: #94A3B8;
    margin-left: 30px;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.policy-content strong {
    color: #F1F5F9;
}

.policy-contact {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(31, 255, 224, 0.2);
}

.contact-info {
    background: rgba(11, 28, 45, 0.5);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(31, 255, 224, 0.2);
}

.contact-info p {
    margin-bottom: 8px;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.thank-you-box {
    max-width: 600px;
    text-align: center;
    background: linear-gradient(135deg, #1a2f45 0%, #0f2438 100%);
    padding: 60px 40px;
    border-radius: 12px;
    border: 2px solid rgba(31, 255, 224, 0.3);
}

.thank-you-icon {
    font-size: 72px;
    margin-bottom: 25px;
}

.thank-you-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1FFFE0;
}

.thank-you-text {
    color: #94A3B8;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 16px;
}

.thank-you-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFB703 0%, #ff9500 100%);
    color: #0B1C2D;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.thank-you-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

@media (max-width: 768px) {
    .policy-box {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 32px;
    }
}

/* Content Pages (Markets, Analytics, Economy) */
.content-page {
    min-height: 100vh;
    padding: 100px 0 50px;
}

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

.content-box {
    background: linear-gradient(135deg, #1a2f45 0%, #0f2438 100%);
    padding: 60px;
    border-radius: 12px;
    border: 2px solid rgba(31, 255, 224, 0.3);
}

.content-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1FFFE0 0%, #FFB703 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text {
    color: #94A3B8;
    line-height: 1.9;
    font-size: 17px;
}

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

@media (max-width: 768px) {
    .content-box {
        padding: 40px 25px;
    }
    
    .content-title {
        font-size: 32px;
    }
}

