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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3498db;
}

/* Navigation */
.main-nav {
    background: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #ecf0f1;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

/* Content Containers */
.content-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Block */
.hero-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0 6rem;
    color: #ffffff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-text-wrap h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Intro Statement */
.intro-statement {
    background: #f8f9fa;
    padding: 4rem 0;
}

.statement-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.statement-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.statement-inner p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Problem Block */
.problem-block {
    background: #ffffff;
    padding: 5rem 0;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.problem-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Trust Visual */
.trust-visual {
    background: #ecf0f1;
    padding: 5rem 0;
}

.trust-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.trust-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.trust-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Services Overview */
.services-overview {
    background: #ffffff;
    padding: 5rem 0;
}

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

.section-header-centered h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-header-centered p {
    font-size: 1.15rem;
    color: #666;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #27ae60;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

/* Testimonial Inline */
.testimonial-inline {
    background: #34495e;
    padding: 4rem 0;
    color: #ffffff;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    border-left: 4px solid #3498db;
    padding-left: 2rem;
}

.testimonial-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

/* Process Flow */
.process-flow {
    background: #ffffff;
    padding: 5rem 0;
}

.process-flow h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    opacity: 0.3;
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* CTA Blocks */
.cta-block-centered {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 5rem 0;
    color: #ffffff;
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-inner h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

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

.cta-simple {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.cta-simple p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Buttons */
.cta-primary,
.cta-secondary,
.cta-primary-large,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-primary {
    background: #3498db;
    color: #ffffff;
}

.cta-primary:hover {
    background: #2980b9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.cta-primary-large {
    background: #27ae60;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
}

.cta-primary-large:hover {
    background: #229954;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
}

.btn-submit {
    background: #3498db;
    color: #ffffff;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #2980b9;
}

/* Why Us */
.why-us-alternate {
    background: #ecf0f1;
    padding: 4rem 0;
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.why-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Form Section */
.form-section {
    background: #ffffff;
    padding: 5rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.form-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.form-intro p {
    font-size: 1.05rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 400;
    font-size: 0.9rem;
}

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

/* Final Reassurance */
.final-reassurance {
    background: #f8f9fa;
    padding: 4rem 0;
}

.final-reassurance h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    text-align: center;
}

.final-reassurance p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

/* Footer */
.main-footer {
    background: #1a1a2e;
    color: #ecf0f1;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: #ecf0f1;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #229954;
}

.cookie-btn.reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn.reject:hover {
    background: #ffffff;
    color: #1a1a2e;
}

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

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* About Story */
.about-story {
    background: #ffffff;
    padding: 5rem 0;
}

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.values-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Team Intro */
.team-intro {
    background: #ffffff;
    padding: 4rem 0;
}

.team-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    text-align: center;
}

.team-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
}

/* Mission Statement */
.mission-statement {
    background: #ecf0f1;
    padding: 4rem 0;
}

.mission-box {
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    text-align: center;
}

.mission-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Services Detailed */
.services-detailed {
    background: #ffffff;
    padding: 5rem 0;
}

.service-detail-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-top: 4px solid #3498db;
}

.service-detail-card.highlight-card {
    border-top-color: #27ae60;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.service-detail-header {
    margin-bottom: 2rem;
}

.service-title-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-title-group h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #27ae60;
}

.service-summary {
    font-size: 1.1rem;
    color: #666;
}

.service-detail-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.service-includes h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-includes li {
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-cta {
    margin-top: 1.5rem;
}

/* Service FAQ */
.service-faq {
    background: #f8f9fa;
    padding: 5rem 0;
}

.service-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Contact Info Section */
.contact-info-section {
    background: #ffffff;
    padding: 5rem 0;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-details h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.contact-item a {
    color: #3498db;
    font-weight: 600;
}

.contact-map {
    position: relative;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.9);
    color: #ffffff;
    padding: 1.5rem;
}

.map-overlay p {
    font-size: 1.05rem;
    margin: 0;
}

/* Contact Instructions */
.contact-instructions {
    background: #f8f9fa;
    padding: 4rem 0;
}

.contact-instructions h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.instruction-step {
    display: flex;
    gap: 1.5rem;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Contact Note */
.contact-note {
    background: #ffffff;
    padding: 4rem 0;
}

.contact-note h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    text-align: center;
}

.contact-note p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
}

.thanks-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    text-align: center;
}

.checkmark-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-content h1 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    display: none;
}

.service-selected {
    font-size: 1.05rem;
    color: #2c3e50;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a2e;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thanks-step {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.thanks-step strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.thanks-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.thanks-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin-bottom: 2rem;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #856404;
    margin: 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thanks-additional {
    background: #ffffff;
    padding: 4rem 0;
}

.thanks-additional h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a2e;
}

.thanks-additional p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #555;
}

.additional-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-link {
    display: inline-block;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.info-link:hover {
    background: #3498db;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    background: #ffffff;
    padding: 5rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.legal-intro {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #555;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.back-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #2980b9;
    color: #ffffff;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

.browser-instructions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.browser-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.browser-item h4 {
    margin-top: 0;
}

.browser-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text-wrap,
    .hero-visual {
        flex: 1;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-item {
        flex: 1;
        min-width: 280px;
    }

    .trust-layout {
        flex-direction: row;
        align-items: center;
    }

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

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1;
        min-width: 280px;
    }

    .why-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .why-item {
        flex: 1;
        min-width: 280px;
    }

    .form-row {
        flex-direction: row;
    }

    .form-row .form-group {
        flex: 1;
    }

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

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

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 45%;
    }

    .contact-layout {
        flex-direction: row;
    }

    .contact-details,
    .contact-map {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .additional-links {
        flex-direction: row;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-text-wrap h1 {
        font-size: 3.5rem;
    }

    .services-stack {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 45%;
    }
}
