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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

/* Ad Notice */
.ad-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    z-index: 9999;
}

/* Floating Navigation - Asymmetric */
.floating-nav {
    position: fixed;
    top: 50px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    z-index: 9000;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.nav-links a {
    color: #4a4a4a;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-right: 3px solid transparent;
    padding-right: 1rem;
}

.nav-links a:hover {
    color: #1a1a1a;
    border-right-color: #1a1a1a;
}

/* Hero Asymmetric Layout */
.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    margin-top: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 100;
    max-width: 500px;
    margin-left: 8%;
}

.hero-content-offset h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    max-width: 700px;
    z-index: 50;
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    overflow: hidden;
    background: #ccc;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
}

/* Buttons and CTAs */
.cta-primary, .btn-primary, .btn-submit {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover, .btn-primary:hover, .btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary, .btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover, .btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Intro Offset Section */
.intro-offset {
    display: flex;
    padding: 8rem 5%;
    gap: 6rem;
    align-items: center;
    background: #fff;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
    padding-left: 5%;
}

.intro-visual-block {
    flex: 1;
    position: relative;
    margin-top: -3rem;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    background: #ddd;
}

.intro-visual-block img {
    width: 100%;
    height: 450px;
}

/* Services Staggered Layout */
.services-staggered {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.section-title-offset {
    max-width: 600px;
    margin-left: 10%;
    margin-bottom: 5rem;
}

.service-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card.offset-left {
    margin-left: 5%;
    margin-right: 15%;
}

.service-card.offset-right {
    margin-left: 15%;
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-card.offset-center {
    margin-left: 10%;
    margin-right: 10%;
}

.service-image-wrapper {
    flex: 0 0 280px;
    border-radius: 6px;
    overflow: hidden;
    background: #ccc;
}

.service-image-wrapper img {
    width: 280px;
    height: 200px;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.service-cta {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
}

.service-cta:hover {
    background: #333;
}

/* Process Diagonal Section */
.process-diagonal {
    padding: 8rem 5%;
    background: linear-gradient(165deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.process-content-block {
    max-width: 900px;
    margin-left: 8%;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.step h4 {
    color: #fff;
}

.step p {
    color: rgba(255, 255, 255, 0.85);
}

/* Testimonials Overlap */
.testimonials-overlap {
    padding: 8rem 5%;
    background: #fff;
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.testimonial-offset {
    max-width: 500px;
    padding: 2.5rem;
    background: #f5f5f5;
    border-left: 5px solid #1a1a1a;
    position: relative;
}

.testimonial-offset:nth-child(1) {
    margin-top: -2rem;
}

.testimonial-offset:nth-child(2) {
    margin-top: 3rem;
}

blockquote {
    font-style: italic;
    color: #333;
    line-height: 1.8;
}

cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
}

/* Form Section Asymmetric */
.form-section-asymmetric {
    padding: 8rem 5%;
    background: #f9f9f9;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.form-container-offset {
    flex: 1;
    max-width: 550px;
    margin-left: 5%;
}

.form-intro {
    margin-bottom: 2rem;
    color: #555;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    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: #1a1a1a;
}

.form-visual-element {
    flex: 1;
    margin-top: -4rem;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    background: #ddd;
}

.form-visual-element img {
    width: 100%;
    height: 500px;
}

/* Final CTA Offset */
.final-cta-offset {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 5rem 5% 2rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1200px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

.btn-accept {
    background: #fff;
    color: #1a1a1a;
}

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* About Page Styles */
.about-hero-diagonal {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    margin-top: 40px;
    background: linear-gradient(120deg, #2a2a2a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 100;
    max-width: 600px;
    margin-left: 10%;
}

.about-hero-content h1 {
    color: #fff;
    font-size: 4rem;
}

.about-hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 45%;
    max-width: 600px;
    z-index: 50;
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    overflow: hidden;
    background: #555;
}

.about-hero-image-overlap img {
    width: 100%;
    height: 500px;
}

.about-story-offset {
    display: flex;
    padding: 8rem 5%;
    gap: 5rem;
    align-items: center;
    background: #fff;
}

.story-text-narrow {
    flex: 1;
    max-width: 550px;
    margin-left: 8%;
}

.story-visual-block {
    flex: 1;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    overflow: hidden;
    background: #ccc;
}

.story-visual-block img {
    width: 100%;
    height: 400px;
}

.philosophy-staggered {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.philosophy-title-offset {
    max-width: 600px;
    margin-left: 12%;
    margin-bottom: 4rem;
}

.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-item {
    max-width: 700px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.philosophy-item.offset-left {
    margin-left: 5%;
}

.philosophy-item.offset-right {
    margin-left: auto;
    margin-right: 5%;
}

.philosophy-item.offset-center {
    margin-left: auto;
    margin-right: auto;
}

.team-irregular {
    padding: 8rem 5%;
    background: #fff;
}

.team-intro {
    max-width: 700px;
    margin-left: 8%;
    margin-bottom: 4rem;
}

.team-image-overlap {
    width: 80%;
    margin: 0 auto 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
    background: #ddd;
}

.team-image-overlap img {
    width: 100%;
    height: 500px;
}

.team-values-offset {
    max-width: 600px;
    margin-left: auto;
    margin-right: 8%;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    border-left: 4px solid #1a1a1a;
    margin-bottom: 1rem;
    background: #f5f5f5;
}

.awards-diagonal {
    padding: 6rem 5%;
    background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #fff;
}

.awards-content {
    max-width: 800px;
    margin-left: 10%;
}

.awards-content h2 {
    color: #fff;
}

.cta-about-offset {
    padding: 8rem 5%;
    background: #f9f9f9;
    text-align: center;
}

.cta-about-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page Styles */
.services-hero-offset {
    padding: 10rem 5% 5rem;
    margin-top: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.services-hero-text {
    max-width: 700px;
    margin-left: 10%;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #555;
}

.services-detail-staggered {
    padding: 6rem 5%;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail.offset-left {
    margin-left: 5%;
    margin-right: 15%;
}

.service-detail.offset-right {
    margin-left: 15%;
    margin-right: 5%;
}

.service-detail.offset-center {
    margin-left: 10%;
    margin-right: 10%;
}

.service-detail-image {
    flex: 0 0 400px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    background: #ccc;
}

.service-detail-image img {
    width: 400px;
    height: 350px;
}

.service-detail-content {
    flex: 1;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #1a1a1a;
    margin-bottom: 0.8rem;
    background: #f9f9f9;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-service {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
}

.btn-service:hover {
    background: #333;
}

.additional-services-offset {
    padding: 6rem 5%;
    background: #f9f9f9;
    max-width: 1000px;
    margin: 0 auto;
}

.additional-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.additional-item {
    flex: 1;
    padding: 2rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.additional-price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 1rem;
}

.faq-diagonal {
    padding: 6rem 5%;
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #1a1a1a;
    border-radius: 4px;
}

.cta-services-offset {
    padding: 6rem 5%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.cta-services-offset h2 {
    color: #fff;
}

/* Contact Page Styles */
.contact-hero-offset {
    padding: 10rem 5% 5rem;
    margin-top: 40px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.contact-hero-content h1 {
    color: #fff;
    margin-left: 10%;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 10%;
}

.contact-info-asymmetric {
    padding: 8rem 5%;
    background: #fff;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-main-block {
    flex: 1;
    max-width: 600px;
    margin-left: 5%;
}

.contact-details-offset {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-detail-item {
    padding: 2rem;
    background: #f9f9f9;
    border-left: 5px solid #1a1a1a;
    border-radius: 4px;
}

.email-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    user-select: all;
}

.email-note, .hours-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-visual-offset {
    flex: 1;
    margin-top: 3rem;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    overflow: hidden;
    background: #ccc;
}

.contact-visual-offset img {
    width: 100%;
    height: 500px;
}

.contact-approach-diagonal {
    padding: 6rem 5%;
    background: #f9f9f9;
}

.approach-content {
    max-width: 800px;
    margin-left: 10%;
}

.contact-map-offset {
    padding: 6rem 5%;
    background: #fff;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    height: 400px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 26, 0.9);
    color: #fff;
    padding: 2rem 3rem;
    border-radius: 6px;
    text-align: center;
}

.contact-faq-staggered {
    padding: 6rem 5%;
    background: #f9f9f9;
    max-width: 900px;
    margin: 0 auto;
}

.contact-faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-faq-item {
    padding: 2rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-cta-offset {
    padding: 6rem 5%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.contact-cta-offset h2 {
    color: #fff;
}

/* Thanks Page Styles */
.thanks-hero-center {
    padding: 12rem 5% 6rem;
    margin-top: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.thanks-next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step-content {
    flex: 1;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.thanks-portfolio-preview {
    padding: 6rem 5%;
    background: #fff;
    text-align: center;
}

.portfolio-preview-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.preview-item {
    flex: 1;
    max-width: 300px;
}

.preview-item img {
    width: 100%;
    height: 250px;
    border-radius: 6px;
    margin-bottom: 1rem;
    background: #ccc;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 5% 6rem;
    margin-top: 40px;
    background: #fff;
}

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

.legal-content h2 {
    margin-top: 3rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: #333;
}

.legal-content ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.cookie-table thead {
    background: #f5f5f5;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-nav {
        top: 40px;
        right: 2%;
        padding: 1.5rem 1rem;
    }

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

    .hero-image-overlap {
        width: 50%;
        right: 0;
    }

    .service-card.offset-left,
    .service-card.offset-right,
    .service-card.offset-center {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        border-radius: 0;
    }

    .nav-links {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 6rem 5% 3rem;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        max-width: 100%;
        right: 0;
        margin-top: 3rem;
    }

    .intro-offset,
    .about-story-offset,
    .form-section-asymmetric,
    .contact-info-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-narrow,
    .story-text-narrow {
        padding-left: 0;
        margin-left: 0;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card.offset-right {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .service-detail-image img {
        width: 100%;
        height: 300px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .additional-grid,
    .portfolio-preview-grid {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }
}
