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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
    list-style: none;
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .nav-menu li {
        margin-bottom: 0;
        margin-left: 2rem;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.hero-visual img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

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

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-text {
    background-color: transparent;
    color: var(--text-dark);
    border: none;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    margin-bottom: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

.alt-bg {
    background-color: var(--bg-light);
}

@media (min-width: 768px) {
    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2.25rem;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }

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

/* Value Cards */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .value-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}

/* Services */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-icon img {
    width: 48px;
    height: 48px;
}

.service-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-text p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .services-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .step {
        flex: 0 0 calc(33.333% - 1.34rem);
    }
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-item {
        flex: 1;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial strong {
    color: var(--text-dark);
}

.testimonial span {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .testimonial {
        flex: 0 0 calc(33.333% - 1.34rem);
    }
}

/* Industries Served */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-card {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.industry-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.industry-card p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .industries-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .industry-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .industry-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Tips Grid */
.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-card {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.tip-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.tip-card p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .tips-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tip-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.cookie-modal-close:hover {
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option p {
    margin-left: 2rem;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* Services Page Specific */
.service-category {
    margin-bottom: 3rem;
}

.service-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-card-header img {
    width: 48px;
    height: 48px;
}

.service-card-header h4 {
    font-size: 1.2rem;
    margin: 0;
}

.service-card-body {
    padding: 0 1.5rem 1.5rem;
}

.service-card-body p {
    color: var(--text-light);
}

.service-card-footer {
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* Pricing Factors */
.pricing-factors {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.factor-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.factor-item h3 {
    margin-bottom: 0.75rem;
}

.factor-item p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .pricing-factors {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .factor-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .factor-item {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.benefit-item img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* Comparison Table */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1rem;
}

.comparison-cell:first-child {
    font-weight: 600;
    background-color: var(--bg-light);
}

.comparison-cell.highlight {
    background-color: #eff6ff;
    color: var(--primary-color);
    font-weight: 600;
}

.header-row .comparison-cell {
    font-weight: 700;
    background-color: var(--text-dark);
    color: white;
}

.header-row .comparison-cell:first-child {
    background-color: var(--bg-white);
}

@media (min-width: 768px) {
    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
    }

    .comparison-cell:first-child {
        flex: 0 0 200px;
    }
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.company-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-table td:first-child {
    font-weight: 600;
    width: 140px;
}

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

.contact-checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.contact-checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.contact-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.response-time {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    margin-top: 2rem;
}

.response-time img {
    width: 48px;
    height: 48px;
}

.response-time h3 {
    margin-bottom: 0.5rem;
}

.response-time p {
    color: var(--text-light);
    margin: 0;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-info,
    .contact-description {
        flex: 1;
    }
}

/* Location Section */
.location-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.location-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.location-image img {
    width: 100%;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .location-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .location-text,
    .location-image {
        flex: 1;
    }
}

/* Coverage Grid */
.coverage-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.coverage-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.coverage-item p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .coverage-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .coverage-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

/* Thank You Page */
.thank-you-hero {
    padding: 4rem 0;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thank-you-content .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-card .step-number {
    position: static;
    margin: 0 auto 1rem;
}

.step-card h3 {
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .step-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}

.waiting-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.waiting-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.waiting-link-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.waiting-link-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.waiting-link-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.waiting-link-card p {
    color: var(--text-light);
    margin: 0;
}

@media (min-width: 768px) {
    .waiting-links {
        flex-direction: row;
    }

    .waiting-link-card {
        flex: 1;
    }
}

/* Legal Pages */
.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-document h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.legal-document p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-document ul,
.legal-document ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-document strong {
    color: var(--text-dark);
}

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

.legal-document em {
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal-document table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.legal-document table th,
.legal-document table td {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.legal-document table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.gdpr-purpose {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.gdpr-purpose h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* About Page Specific */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.philosophy-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-item p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

.team-description p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        gap: 3rem;
    }

    .timeline-year {
        flex: 0 0 100px;
    }

    .timeline-content {
        flex: 1;
    }
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-detail-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.value-detail-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-detail-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.achievement-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.achievement-card h3 {
    margin-bottom: 0.75rem;
}

.achievement-card p {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .achievements-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .achievement-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .achievement-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}

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

.commitment-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.commitment-list {
    list-style: none;
    margin: 2rem 0;
}

.commitment-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cookies-table thead th {
    background-color: var(--bg-light);
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.cookies-table tbody td {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
}

.cookies-table tbody tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Utility Classes */
.lead {
    font-size: 1.2rem;
    line-height: 1.6;
}

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

/* Responsive utilities */
@media (max-width: 767px) {
    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table thead th,
    .cookies-table tbody td {
        padding: 0.5rem;
    }
}