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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    padding: 12px 24px;
    border: 2px solid #2563eb;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-icon {
    color: #10b981;
    flex-shrink: 0;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #d1d5db;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons .btn-secondary {
    color: #d1d5db;
    border-color: #4b5563;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.cookie-buttons .btn-secondary:hover {
    background-color: #4b5563;
    color: white;
}

.cookie-buttons .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
}
.cookie-setting {
    display: flex;
}

/* Navigation */
.navbar {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2563eb;
}

.logo {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

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

.hero-text h1 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-graphic {
    text-align: center;
}

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

.bg-light {
    background-color: #f8fafc;
}

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

.section-icon {
    color: #2563eb;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

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

/* Cards */
.card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    color: #10b981;
    margin-bottom: 1.5rem;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    color: #2563eb;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-content {
    margin-bottom: 20px;
}

.quote-icon {
    color: #2563eb;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: #1e293b;
    display: block;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Forms */
.subscription-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Contact */
.contact-card {
    text-align: center;
    padding: 30px;
}

.contact-icon {
    color: #2563eb;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #2563eb;
    text-decoration: none;
}

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

/* Social Links */
.social-links {
    text-align: center;
    margin-top: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #1d4ed8;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 40px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: white;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.services-hero-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-hero-content p {
    color: #dbeafe;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-hero-icon {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-large-icon {
    flex-shrink: 0;
}

.service-header h3 {
    margin: 0;
    color: #1e293b;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #475569;
}

.service-features svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.step-icon {
    color: #2563eb;
    margin-bottom: 15px;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Call to Action */
.cta-content {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 40px;
    border-radius: 12px;
}

.cta-text h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn-secondary{
    color: #fff;
    border: 1px solid #fff;
}

/* Article Pages Styles */
.article-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0 60px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.article-category {
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.article-date {
    color: #94a3b8;
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.author-icon {
    color: #94a3b8;
}

.author-info strong {
    display: block;
    color: white;
    font-weight: 600;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-intro {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
}

.article-graphic {
    flex-shrink: 0;
}

.article-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.table-of-contents {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.table-of-contents h3 {
    color: #1e293b;
    margin-bottom: 20px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Content Boxes */
.highlight-box, .tip-box, .warning-box, .update-box {
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-box {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
}

.tip-box {
    background: #d1fae5;
    border-left: 4px solid #10b981;
}

.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.update-box {
    background: #f3e8ff;
    border-left: 4px solid #8b5cf6;
}

.highlight-icon, .tip-icon, .warning-icon {
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-icon {
    color: #10b981;
}

.warning-icon {
    color: #f59e0b;
}

.tip-box h4, .warning-box h4, .update-box h4 {
    margin: 0 0 10px 0;
    color: #1e293b;
}

.tip-box p, .warning-box p, .update-box p {
    margin: 0;
    line-height: 1.6;
}

/* Calculation and Comparison */
.calculation-box {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.calculation-box h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

.calculation-box p {
    margin: 8px 0;
    font-family: monospace;
    font-size: 0.95rem;
}

.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #2563eb;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
}

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

.comparison-table tr:nth-child(even) {
    background: #f8fafc;
}

/* Allowance Cards */
.allowance-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.allowance-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.allowance-card:hover {
    transform: translateY(-3px);
}

.allowance-icon {
    margin-bottom: 15px;
}

.allowance-card h4 {
    color: #1e293b;
    margin-bottom: 10px;
}

.allowance-card p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Content with Icon */
.content-with-icon {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin: 30px 0;
}

.section-graphic {
    flex-shrink: 0;
}

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

.relief-method {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
}

.relief-method h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

.relief-method ul {
    list-style: none;
    padding: 0;
}

.relief-method li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.relief-method li:last-child {
    border-bottom: none;
}

/* Strategy Cards */
.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.strategy-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.strategy-icon {
    margin-bottom: 15px;
}

.strategy-card h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

/* Carry Forward Example */
.carry-forward-example {
    margin: 30px 0;
    overflow-x: auto;
}

.carry-forward-example table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.carry-forward-example th {
    background: #10b981;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.carry-forward-example td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

/* High Earner Challenges */
.high-earner-challenges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.challenge-item {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.challenge-icon {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.challenge-item h4 {
    color: #1e293b;
    margin: 0 0 10px 0;
}

.challenge-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.solution-card {
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 25px;
}

.solution-card h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

/* Advanced Strategies */
.advanced-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.advanced-strategy {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.advanced-icon {
    flex-shrink: 0;
}

.advanced-strategy h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

/* Implementation Timeline */
.implementation-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.timeline-step {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-step .step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-step h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

.timeline-step ul {
    list-style: none;
    padding: 0;
}

.timeline-step li {
    padding: 5px 0;
    color: #475569;
    position: relative;
    padding-left: 20px;
}

.timeline-step li:before {
    content: "•";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Timeline for articles */
.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline-content h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

/* Mistakes Grid */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.mistake-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #ef4444;
}

.mistake-icon {
    color: #ef4444;
    margin-bottom: 15px;
}

.mistake-card h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

/* Action Checklist */
.action-checklist {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checklist-item:hover {
    background: #f1f5f9;
}

.check-icon {
    flex-shrink: 0;
}

.checklist-item span {
    color: #475569;
    line-height: 1.5;
}

/* Next Steps */
.next-steps-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.steps-graphic {
    flex-shrink: 0;
}

/* CTA Section in Articles */
.cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.cta-section h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.cta-section p {
    color: #475569;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Related Articles */
.article-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.article-related h3 {
    color: #1e293b;
    margin-bottom: 25px;
}

.related-articles {
    display: grid;
    gap: 25px;
}

.related-article {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateY(-3px);
}

.related-icon {
    flex-shrink: 0;
}

.related-content h4 {
    margin: 0 0 10px 0;
}

.related-content a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.related-content p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ISA Types */
.isa-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.isa-type-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.isa-type-card:hover {
    transform: translateY(-3px);
}

.isa-icon {
    margin-bottom: 15px;
}

.isa-type-card h4 {
    color: #1e293b;
    margin-bottom: 15px;
}

/* Legal Pages Styles */
.legal-header {
    background: linear-gradient(135deg, #1e293b 0%, #374151 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.legal-icon {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.legal-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin: 0;
}

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

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

.introduction {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #2563eb;
}

.introduction p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.introduction p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-top: 20px;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section h4 {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

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

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Legal Basis Sections */
.legal-basis {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #3b82f6;
}

.legal-basis h4 {
    color: #1e293b;
    margin-bottom: 10px;
    margin-top: 0;
}

.legal-basis p, .legal-basis ul {
    margin-bottom: 10px;
}

.legal-basis p:last-child, .legal-basis ul:last-child {
    margin-bottom: 0;
}

/* Purpose List */
.purpose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.purpose-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
}

.purpose-item h4 {
    color: #1e293b;
    margin-bottom: 15px;
    margin-top: 0;
}

/* Retention Periods */
.retention-periods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.retention-item {
    background: #f0f9ff;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 20px;
}

.retention-item h4 {
    color: #1e293b;
    margin-bottom: 10px;
    margin-top: 0;
}

.retention-item p {
    margin: 0;
    color: #475569;
    font-weight: 500;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.right-item h4 {
    color: #1e293b;
    margin-bottom: 10px;
    margin-top: 0;
}

.right-item p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.contact-info p {
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-info ul {
    margin: 0;
    padding-left: 20px;
}

.ico-contact, .company-contact, .ombudsman-contact {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #2563eb;
}

.ico-contact p, .company-contact p, .ombudsman-contact p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.ico-contact p:last-child, .company-contact p:last-child, .ombudsman-contact p:last-child {
    margin-bottom: 0;
}

/* Fee Structure */
.fee-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.fee-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.fee-item h4 {
    color: #1e293b;
    margin-bottom: 15px;
    margin-top: 0;
}

.fee-item p {
    margin: 0;
    color: #475569;
    line-height: 1.5;
}

/* Risk Warnings */
.risk-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.risk-warning h4 {
    color: #1e293b;
    margin-bottom: 10px;
    margin-top: 0;
}

.risk-warning ul {
    margin: 0;
    padding-left: 20px;
}

.risk-warning li {
    margin-bottom: 5px;
}

/* Cookie Policy Specific Styles */
.cookie-types-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.cookie-type {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.cookie-type h4 {
    color: #1e293b;
    margin-bottom: 10px;
    margin-top: 0;
}

.cookie-type p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.cookie-category {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.cookie-category h3 {
    color: #1e293b;
    margin-bottom: 15px;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.cookie-details {
    margin: 25px 0;
    overflow-x: auto;
}

.cookie-details table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cookie-details th {
    background: #374151;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-details td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.cookie-details tr:nth-child(even) {
    background: #f8fafc;
}

.analytics-info, .marketing-info {
    background: #f0f9ff;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.analytics-info h4, .marketing-info h4 {
    color: #1e293b;
    margin-bottom: 10px;
    margin-top: 0;
}

.third-party-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.service-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
}

.service-item h4 {
    color: #1e293b;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-item p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-item p:last-child {
    margin-bottom: 0;
}

.cookie-controls {
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: 30px 0;
}

.cookie-controls h4 {
    color: #1e293b;
    margin-bottom: 15px;
    margin-top: 0;
}

.cookie-controls p {
    margin-bottom: 20px;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.browser-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.browser-item h4 {
    color: #1e293b;
    margin-bottom: 15px;
    margin-top: 0;
}

.browser-item ol {
    margin: 0;
    padding-left: 20px;
}

.browser-item li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.warning-note {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.warning-note h4 {
    color: #1e293b;
    margin-bottom: 10px;
    margin-top: 0;
}

.warning-note p {
    margin: 0;
    line-height: 1.6;
}

.contact-details {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #2563eb;
}

.contact-details h4 {
    color: #1e293b;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-details p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.helpful-links {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.helpful-links h3 {
    color: #1e293b;
    margin-bottom: 20px;
    margin-top: 0;
}

.helpful-links ul {
    margin: 0;
    padding-left: 20px;
}

.helpful-links li {
    margin-bottom: 10px;
}

.helpful-links a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.helpful-links a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
    animation: successPulse 2s infinite;
}

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

.thank-you-content h1 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-details {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.subscription-details h3 {
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.next-steps {
    display: grid;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.step-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.step-item h4 {
    color: #1e293b;
    margin-bottom: 8px;
}

.step-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.subscription-benefits {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.subscription-benefits h3 {
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

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

.benefit-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: #1e293b;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.continue-exploring {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.continue-exploring h3 {
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
}

.continue-exploring > p {
    color: #64748b;
    text-align: center;
    margin-bottom: 30px;
}

.explore-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.explore-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.explore-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.card-icon {
    flex-shrink: 0;
}

.explore-card h4 {
    color: #1e293b;
    margin-bottom: 8px;
}

.explore-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.contact-cta h3 {
    color: white;
    margin-bottom: 15px;
}

.contact-cta p {
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.social-follow {
    text-align: center;
    margin: 40px 0;
}

.social-follow h4 {
    color: #1e293b;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Thank You Page */
@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .subscription-details,
    .subscription-benefits,
    .continue-exploring {
        padding: 25px;
        margin: 25px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .subscription-form {
        padding: 30px 20px;
    }
    
    .card,
    .benefit-card,
    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }
}

.nav-menu.active {
    position: absolute;
    top: 80px;
    left: 0px;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    background-color: #fff;
    z-index: 1000;
}