:root {
    --navy-editorial: #1a2332;
    --deep-slate: #2c3e50;
    --charcoal-text: #34495e;
    --financial-teal: #16a085;
    --data-blue: #3498db;
    --highlight-amber: #f39c12;
    --off-white: #f8f9fa;
    --light-gray: #ecf0f1;
    --paper-white: #ffffff;
    --success-green: #27ae60;
    --alert-red: #e74c3c;
    --neutral-gray: #95a5a6;
}

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

body {
    font-family: 'Manrope', sans-serif;
    color: var(--charcoal-text);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

.iti, #phone {
    width: 100%;
}

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

.hidden-nav-trigger {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--navy-editorial);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.hidden-nav-trigger:hover {
    transform: scale(1.1);
}

.hidden-nav-trigger span {
    width: 25px;
    height: 2px;
    background: var(--paper-white);
    transition: all 0.3s ease;
}

.circular-nav {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-editorial);
    width: 400px;
    border-radius: 0 0 200px 200px;
    padding: 80px 40px 60px;
    z-index: 9999;
    transition: top 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.circular-nav.active {
    top: 0;
}

.nav-logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.nav-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.nav-site-name {
    color: var(--paper-white);
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-item {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-item:hover, .nav-item.active {
    background: var(--financial-teal);
    color: var(--paper-white);
}

.lang-switcher {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.lang-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lang-link:hover, .lang-link.active {
    background: var(--financial-teal);
    color: var(--paper-white);
}

.lang-separator {
    color: var(--neutral-gray);
    margin: 0 8px;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,35,50,0.85) 0%, rgba(44,62,80,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--paper-white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: Georgia, serif;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    background: var(--financial-teal);
    color: var(--paper-white);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(22,160,133,0.3);
}

.hero-cta:hover {
    background: var(--data-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52,152,219,0.4);
}

.stats-section {
    padding: 100px 0;
    background: var(--paper-white);
}

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

.stat-card {
    background: var(--off-white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    border-color: var(--financial-teal);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 42px;
    color: var(--financial-teal);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-editorial);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--charcoal-text);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-meta {
    font-size: 13px;
    color: var(--neutral-gray);
}

.stats-methodology {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--financial-teal);
}

.stats-methodology p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--charcoal-text);
}

.timeline-section {
    padding: 100px 0;
    background: var(--off-white);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: var(--navy-editorial);
    font-family: Georgia, serif;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: var(--charcoal-text);
    line-height: 1.7;
}

.timeline-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.timeline-btn {
    background: var(--paper-white);
    border: 2px solid var(--light-gray);
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--charcoal-text);
    transition: all 0.3s ease;
}

.timeline-btn:hover, .timeline-btn.active {
    background: var(--financial-teal);
    border-color: var(--financial-teal);
    color: var(--paper-white);
}

.timeline-visual {
    background: var(--paper-white);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

#timelineChart {
    width: 100%;
    height: 400px;
}

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

.insight-item {
    background: var(--paper-white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--data-blue);
}

.insight-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy-editorial);
    font-weight: 700;
}

.insight-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal-text);
}

.analysis-section {
    padding: 100px 0;
    background: var(--paper-white);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.analysis-card {
    background: var(--off-white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.analysis-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.analysis-card:hover .analysis-image img {
    transform: scale(1.1);
}

.analysis-content {
    padding: 30px;
}

.analysis-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--navy-editorial);
    font-weight: 700;
    line-height: 1.4;
}

.analysis-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal-text);
    margin-bottom: 20px;
}

.analysis-link {
    color: var(--financial-teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.analysis-link:hover {
    color: var(--data-blue);
    gap: 12px;
}

.quiz-section {
    padding: 100px 0;
    background: var(--off-white);
}

.quiz-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: var(--charcoal-text);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--paper-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
}

.question-text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--navy-editorial);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: var(--off-white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quiz-option:hover {
    background: var(--light-gray);
    border-color: var(--financial-teal);
}

.quiz-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.quiz-option span {
    font-size: 16px;
    color: var(--charcoal-text);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.quiz-btn {
    background: var(--financial-teal);
    color: var(--paper-white);
    border: none;
    padding: 14px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.quiz-btn:hover {
    background: var(--data-blue);
    transform: translateY(-2px);
}

.quiz-btn:disabled {
    background: var(--neutral-gray);
    cursor: not-allowed;
    transform: none;
}

.quiz-submit {
    display: none;
}

.quiz-progress {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal-text);
}

.quiz-result {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.quiz-result.active {
    display: block;
}

.result-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-editorial);
    margin-bottom: 20px;
}

.result-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal-text);
    margin-bottom: 30px;
}

.quiz-restart {
    background: var(--data-blue);
}

.contact-section {
    padding: 100px 0;
    background: var(--paper-white);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: var(--charcoal-text);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--financial-teal);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy-editorial);
}

.info-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal-text);
}

.contact-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy-editorial);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--paper-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--financial-teal);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--financial-teal);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--data-blue);
}

.form-submit {
    width: 100%;
    background: var(--financial-teal);
    color: var(--paper-white);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--data-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52,152,219,0.3);
}

.site-footer {
    background: var(--navy-editorial);
    color: var(--light-gray);
    padding: 80px 0 30px;
}

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

.footer-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--light-gray);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--financial-teal);
    margin-top: 3px;
    font-size: 16px;
}

.footer-column h4 {
    color: var(--paper-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--financial-teal);
    transform: translateX(5px);
}

.footer-lang {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lang-option {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 15px;
    padding: 10px 20px;
    border: 2px solid var(--deep-slate);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.lang-option:hover, .lang-option.active {
    background: var(--financial-teal);
    border-color: var(--financial-teal);
    color: var(--paper-white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--neutral-gray);
}

.page-header {
    background: linear-gradient(135deg, var(--navy-editorial) 0%, var(--deep-slate) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--paper-white);
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.page-subtitle {
    font-size: 19px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
    background: var(--paper-white);
}

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

.content-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--navy-editorial);
    font-family: Georgia, serif;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-text);
}

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

.content-text ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-text li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.posts-section {
    padding: 80px 0;
    background: var(--off-white);
}

.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.post-card {
    background: var(--paper-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.post-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.post-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.post-date, .post-category {
    font-size: 14px;
    color: var(--neutral-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-category {
    background: var(--light-gray);
    padding: 5px 15px;
    border-radius: 15px;
    color: var(--charcoal-text);
    font-weight: 600;
}

.post-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--navy-editorial);
    font-family: Georgia, serif;
    line-height: 1.4;
}

.post-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal-text);
    margin-bottom: 25px;
}

.post-toggle {
    background: var(--financial-teal);
    color: var(--paper-white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.post-toggle:hover {
    background: var(--data-blue);
    transform: translateY(-2px);
}

.post-toggle i {
    transition: transform 0.3s ease;
}

.post-toggle.active i {
    transform: rotate(180deg);
}

.post-full-content {
    display: none;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.post-full-content.active {
    display: block;
}

.post-full-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 18px;
    color: var(--navy-editorial);
}

.post-full-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-text);
    margin-bottom: 20px;
}

.contact-page-section {
    padding: 80px 0;
    background: var(--off-white);
}

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

.contact-info-card {
    background: var(--paper-white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 40px;
    color: var(--financial-teal);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy-editorial);
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--charcoal-text);
}

.contact-hours {
    font-size: 13px;
    color: var(--neutral-gray);
    margin-top: 8px;
}

.map-section {
    margin-bottom: 60px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.map-container iframe {
    display: block;
}

.contact-cta {
    text-align: center;
    background: var(--paper-white);
    padding: 60px 40px;
    border-radius: 15px;
}

.cta-text {
    font-size: 17px;
    color: var(--charcoal-text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--financial-teal);
    color: var(--paper-white);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--data-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52,152,219,0.3);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: var(--off-white);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background: var(--paper-white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 80px;
    color: var(--success-green);
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--navy-editorial);
}

.thanks-message {
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal-text);
    margin-bottom: 15px;
}

.thanks-info {
    font-size: 15px;
    color: var(--neutral-gray);
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-btn {
    padding: 14px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.thanks-btn.primary {
    background: var(--financial-teal);
    color: var(--paper-white);
}

.thanks-btn.primary:hover {
    background: var(--data-blue);
    transform: translateY(-2px);
}

.thanks-btn.secondary {
    background: var(--light-gray);
    color: var(--charcoal-text);
}

.thanks-btn.secondary:hover {
    background: var(--neutral-gray);
    color: var(--paper-white);
}

.legal-header {
    background: linear-gradient(135deg, var(--navy-editorial) 0%, var(--deep-slate) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--paper-white);
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.legal-updated {
    font-size: 16px;
    color: var(--light-gray);
}

.legal-content {
    padding: 80px 0;
    background: var(--paper-white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-text);
}

.legal-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 25px;
    color: var(--navy-editorial);
    font-family: Georgia, serif;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 35px 0 18px;
    color: var(--deep-slate);
}

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

.legal-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-text a {
    color: var(--financial-teal);
    text-decoration: none;
    font-weight: 600;
}

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

.legal-text strong {
    color: var(--navy-editorial);
    font-weight: 700;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--off-white);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--navy-editorial);
    color: var(--paper-white);
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: var(--light-gray);
}

@media (max-width: 768px) {
    .circular-nav {
        width: 90%;
        max-width: 350px;
        padding: 70px 30px 50px;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

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

    .timeline-controls {
        flex-direction: column;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .quiz-container {
        padding: 30px 20px;
    }

    .question-text {
        font-size: 20px;
    }

    .quiz-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .quiz-btn {
        width: 100%;
    }

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

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

    .legal-text h2 {
        font-size: 26px;
    }

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
}

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

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

    .hero-cta {
        padding: 14px 35px;
        font-size: 16px;
    }

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

    .quiz-container {
        padding: 25px 15px;
    }

    .post-content {
        padding: 25px;
    }

    .thanks-content {
        padding: 40px 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}