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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.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;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0066cc;
    color: white;
    border: 2px solid #0066cc;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn:hover {
    background-color: #004499;
    border-color: #004499;
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline {
    background-color: transparent;
    color: #0066cc;
    border-color: #0066cc;
}

.btn-outline:hover {
    background-color: #0066cc;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons .btn {
    min-width: 100px;
    padding: 8px 16px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li a {
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #0066cc;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0066cc;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Main Content - Add top margin for fixed nav */
body {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta .btn {
    background-color: white;
    color: #0066cc;
    border-color: white;
}

.cta .btn:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.header-image {
    margin-top: 40px;
}

.header-image img {
    max-width: 400px;
    height: auto;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

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

.about-image img {
    max-width: 100%;
    height: auto;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-content h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.mission-card {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mission-icon {
    margin-bottom: 20px;
}

.mission-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* Values Section */
.values {
    padding: 80px 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.value-item {
    padding: 30px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.value-item:hover {
    border-color: #0066cc;
}

.value-item h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.team-member {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.member-avatar {
    margin-bottom: 20px;
}

.role {
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Services Grid */
.services-overview {
    padding: 80px 0;
}

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

.service-card {
    background-color: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #0066cc;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

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

.service-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0066cc;
    margin: 20px 0;
}

/* Process Steps */
.service-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-process h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.process-step {
    text-align: center;
    padding: 30px;
}

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

/* Testimonials */
.testimonials-grid {
    padding: 80px 0;
}

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

.testimonial-card {
    background-color: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #0066cc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-name {
    font-weight: 600;
    color: #0066cc;
}

.author-location {
    color: #666;
    font-size: 0.9rem;
}

/* Statistics */
.statistics {
    padding: 60px 0;
    background-color: #0066cc;
    color: white;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trust-indicators h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.trust-item {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trust-icon {
    margin-bottom: 20px;
}

.trust-item h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
}

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

.blog-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

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

.blog-date {
    color: #666;
}

.blog-category {
    color: #0066cc;
    font-weight: 500;
}

.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #0066cc;
}

.read-more {
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    color: #004499;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: #0066cc;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 20px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-details h3 {
    margin-bottom: 10px;
    color: #0066cc;
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-details small {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container h2 {
    margin-bottom: 15px;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 30px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background-color: #0066cc;
    border-color: #0066cc;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    margin-bottom: 40px;
}

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

.step {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.step-icon {
    margin-bottom: 20px;
}

.step h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.contact-reminder {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.contact-reminder h3 {
    margin-bottom: 15px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Additional Resources */
.additional-resources {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.resource-card {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.resource-icon {
    margin-bottom: 20px;
}

.resource-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.resource-link {
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
}

.resource-link:hover {
    color: #004499;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

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

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.content-nav {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.content-nav h3 {
    margin-bottom: 20px;
    color: #0066cc;
}

.content-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-nav li {
    margin-bottom: 10px;
}

.content-nav a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.content-nav a:hover {
    color: #0066cc;
}

.content-main section {
    margin-bottom: 40px;
}

.content-main h2 {
    color: #0066cc;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.content-main h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #0066cc;
    margin: 20px 0;
}

/* Cookie Settings */
.cookie-settings {
    padding: 60px 0;
}

.cookie-controls {
    max-width: 800px;
    margin: 0 auto;
}

.cookie-controls h2 {
    text-align: center;
    margin-bottom: 20px;
}

.cookie-controls > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.cookie-category {
    background-color: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

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

.category-header h3 {
    margin: 0;
    color: #0066cc;
}

.toggle-switch {
    position: relative;
}

.toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    background-color: #ccc;
    border-radius: 34px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: transform 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0066cc;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-actions {
    text-align: center;
    margin-top: 40px;
}

.cookie-actions .btn {
    margin: 0 10px 10px 0;
}

/* Cookie Tables */
.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
    background-color: #0066cc;
    color: white;
    font-weight: 600;
}

.cookie-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Blog Article Styles */
.blog-article {
    margin-top: -80px;
    padding-top: 80px;
}

.article-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 120px 0 60px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

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

.article-date {
    color: #666;
}

.article-category {
    color: #0066cc;
    font-weight: 500;
}

.reading-time {
    color: #666;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.author-info strong {
    color: #0066cc;
    display: block;
    margin-bottom: 5px;
}

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

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

.article-content .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.article-main h2 {
    color: #0066cc;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin: 40px 0 20px 0;
}

.article-main h3 {
    color: #333;
    margin: 30px 0 15px 0;
}

.article-main h4 {
    color: #0066cc;
    margin: 25px 0 10px 0;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.related-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-article {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.related-article:last-child {
    border-bottom: none;
}

.related-article h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.related-article h4 a {
    color: #333;
    text-decoration: none;
    line-height: 1.3;
}

.related-article h4 a:hover {
    color: #0066cc;
}

.related-article .article-date {
    font-size: 0.8rem;
    color: #666;
}

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

.categories li {
    margin-bottom: 10px;
}

.categories a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.categories a:hover {
    color: #0066cc;
}

.newsletter-form {
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    margin-bottom: 10px;
}

.newsletter-form button {
    width: 100%;
    padding: 10px;
}

/* Special Boxes */
.info-box,
.warning-box,
.statistics-box,
.cost-comparison,
.contact-box,
.cta-box,
.key-takeaways,
.cost-benefit-analysis,
.calculation-example {
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
}

.warning-box {
    background-color: #fff3cd;
    border-left-color: #ffc107;
}

.info-box h4,
.warning-box h4,
.statistics-box h4,
.cost-comparison h4,
.key-takeaways h4,
.cost-benefit-analysis h4,
.calculation-example h4 {
    margin-bottom: 15px;
    color: #0066cc;
}

.warning-box h4 {
    color: #856404;
}

.cta-box {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    border: none;
    margin: 40px 0;
}

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

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-box .btn {
    background-color: white;
    color: #0066cc;
    border-color: white;
}

.cta-box .btn:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

/* Download and Tool Links */
.downloads,
.tools-list {
    margin-top: 15px;
}

.download-link,
.tool-link {
    display: block;
    padding: 10px 0;
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    transition: color 0.3s ease;
}

.download-link:hover,
.tool-link:hover {
    color: #004499;
}

.download-link:last-child,
.tool-link:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section ul li a.active {
    color: #0066cc;
}

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

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Grid Layouts */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid,
    .mission-grid,
    .services-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .process-steps,
    .stats-grid,
    .trust-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid,
    .resources-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Legal Content */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-nav {
        position: static;
        order: -1;
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 5px;
    }

    /* Article Content */
    .article-content .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
        order: -1;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-excerpt {
        font-size: 1.1rem;
    }

    /* Contact Form */
    .newsletter-form {
        flex-direction: column;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .cookie-buttons .btn {
        width: 100%;
        max-width: 200px;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .blog-card {
        margin: 0 10px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .article-sidebar,
    .footer {
        display: none !important;
    }

    body {
        padding-top: 0;
    }

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

    .content-wrapper {
        grid-template-columns: 1fr !important;
    }

    a {
        color: #333 !important;
    }

    .btn {
        display: none !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .feature-card,
    .service-card,
    .testimonial-card,
    .blog-card {
        border: 2px solid #000;
    }

    .btn {
        border: 2px solid;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

.nav-toggle:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
