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

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

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

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

a:hover {
    color: #c0392b;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

/* Navigation - Asymmetric */
.nav-asymmetric {
    background: #ffffff;
    padding: 1.2rem 0;
    border-bottom: 3px solid #e74c3c;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    margin-right: auto;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Hero Section - Offset Layout */
.hero-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 2rem 0;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-image-right {
    flex: 1;
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    border-radius: 8px;
    position: relative;
}

.hero-img {
    height: 450px;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-primary:hover,
.cta-secondary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    background: #3498db;
}

.cta-secondary:hover {
    background: #2980b9;
}

/* Intro Section - Asymmetric */
.intro-asymmetric {
    background: #ecf0f1;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.intro-block-offset {
    max-width: 900px;
    margin: 0 0 0 15%;
}

.intro-text-narrow h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-text-narrow p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Services Preview Cards - Irregular Layout */
.services-preview-cards {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-header-offset {
    margin-bottom: 3rem;
    margin-left: 8%;
}

.section-header-offset h3 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.cards-irregular {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card-service {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-1 {
    margin-top: 0;
}

.card-2 {
    margin-top: 3rem;
}

.card-3 {
    margin-top: 1.5rem;
}

.card-img-placeholder {
    background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
    height: 180px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.card-service h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.card-service p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

/* Testimonial Float */
.testimonial-float {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.testimonial-block {
    background: #34495e;
    color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    margin-left: 10%;
}

.testimonial-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: #ecf0f1;
}

/* Value Proposition Split */
.value-proposition-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.value-left {
    flex: 1;
}

.value-left h3 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.value-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.value-right {
    flex: 1;
}

.value-img {
    height: 400px;
}

/* Process Overlapping */
.process-overlapping {
    background: #f8f9fa;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 4rem;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-offset-1 {
    margin-top: 0;
}

.step-offset-2 {
    margin-top: 2rem;
}

.step-offset-3 {
    margin-top: 4rem;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section Inline */
.cta-section-inline {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-content-centered h3 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Form Section - Asymmetric */
.form-section-asymmetric {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto 0 10%;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-wrapper-offset h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    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: #667eea;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Additional Services Grid */
.additional-services-grid {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.additional-services-grid h3 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
}

.services-mini-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    border-left: 4px solid #e74c3c;
}

.mini-card h5 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.mini-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mini-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h4,
.footer-block h5 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-block h4 {
    font-size: 1.5rem;
}

.footer-block h5 {
    font-size: 1.1rem;
}

.footer-block p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 0.6rem;
}

.footer-block ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

/* About Page Styles */
.about-hero-offset {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-text-block h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-lead {
    font-size: 1.3rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-column-left {
    flex: 1;
}

.about-portrait {
    height: 500px;
}

.story-column-right {
    flex: 1.2;
}

.story-column-right h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-column-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.philosophy-block {
    background: #f8f9fa;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.philosophy-points {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.point {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.point h4 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.point p {
    color: #666;
    line-height: 1.6;
}

.experience-grid {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.experience-grid h3 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.experience-cards-offset {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.exp-card {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.exp-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.exp-card p {
    line-height: 1.6;
}

.cta-about {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-about h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Services Page Styles */
.services-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.services-hero h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-intro {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.services-detailed {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.service-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-offset-1 {
    margin-left: 0;
}

.service-offset-2 {
    margin-left: 5%;
}

.service-image {
    flex: 1;
}

.service-img {
    height: 350px;
}

.service-details {
    flex: 1.3;
}

.service-details h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
}

.price-note {
    font-size: 1rem;
    color: #7f8c8d;
    margin-left: -1rem;
}

.btn-order {
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.pricing-notes {
    background: #f8f9fa;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.pricing-notes h3 {
    text-align: center;
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.notes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.note-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.note-box h4 {
    font-size: 1.3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.note-box p {
    color: #666;
    line-height: 1.6;
}

.cta-services {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-services h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Contact Page Styles */
.contact-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-hero h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.contact-info-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-block-left {
    flex: 1;
}

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

.contact-detail h4 {
    font-size: 1.3rem;
    color: #e74c3c;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.contact-detail a {
    color: #3498db;
}

.contact-block-right {
    flex: 1;
}

.contact-img {
    height: 400px;
}

.contact-note {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.note-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.note-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.faq-contact {
    background: #f8f9fa;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.faq-contact h3 {
    text-align: center;
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 550px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.cta-contact {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-contact h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Thanks Page Styles */
.thanks-hero {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-content h2 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

#selectedService {
    font-weight: 600;
    color: #e74c3c;
}

.next-steps {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.next-steps h3 {
    text-align: center;
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-box {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-box h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-box p {
    color: #666;
    line-height: 1.6;
}

.thanks-links {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-links h3 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.links-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.link-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    border: 2px solid #ecf0f1;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: #e74c3c;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.link-card h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.link-card p {
    color: #666;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-section h4 {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.6rem;
    color: #555;
    line-height: 1.6;
}

.legal-updated {
    font-size: 0.95rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-offset,
    .value-proposition-split,
    .about-story-asymmetric,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        gap: 2rem;
    }

    .service-offset-2 {
        margin-left: 0;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .intro-block-offset {
        margin: 0;
    }

    .form-wrapper-offset {
        margin: 0 auto;
    }

    .testimonial-block {
        margin-left: 0;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}