* {
    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: #2c2c2c;
    background: #fafafa;
}

.ad-disclosure {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    display: flex;
    align-items: stretch;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 120px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-image-diagonal {
    flex: 1.2;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    background: #d4c4b0;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #333333;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.intro-offset {
    padding: 100px 80px;
    background: #ffffff;
}

.intro-narrow {
    max-width: 700px;
    margin-left: 15%;
}

.intro-text {
    font-size: 24px;
    line-height: 1.8;
    color: #3a3a3a;
    font-weight: 300;
}

.services-asymmetric {
    padding: 120px 80px;
    background: #f9f9f9;
}

.section-header-diagonal {
    margin-bottom: 60px;
    transform: translateX(-40px);
}

.section-header-diagonal h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-diagonal p {
    font-size: 18px;
    color: #6a6a6a;
}

.services-grid-offset {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-large {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #e8e4e0;
}

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

.service-card-small {
    grid-column: span 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #d9d5d0;
}

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

.service-card-wide {
    grid-column: span 3;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #ccc8c3;
}

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

.service-card-medium {
    grid-column: span 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #e0dcd7;
}

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

.service-image-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-image-wrap img,
.service-card-small:hover .service-image-wrap img,
.service-card-wide:hover .service-image-wrap img,
.service-card-medium:hover .service-image-wrap img {
    transform: scale(1.05);
}

.service-content-overlay {
    padding: 30px;
    background: #ffffff;
}

.service-content-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content-overlay p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 15px;
}

.service-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 10px;
}

.cta-diagonal {
    padding: 100px 80px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 60px 0;
}

.cta-content-left {
    max-width: 600px;
    color: #ffffff;
}

.cta-content-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #d4d4d4;
}

.process-stagger {
    padding: 100px 80px;
    background: #ffffff;
}

.process-title-offset {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-left: 20%;
    color: #1a1a1a;
}

.process-blocks {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-block-right {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-left: 10%;
}

.process-block-left {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-right: 10%;
}

.process-number {
    font-size: 48px;
    font-weight: 900;
    color: #e0e0e0;
    min-width: 80px;
}

.process-block-right h3,
.process-block-left h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.process-block-right p,
.process-block-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.testimonial-offset {
    padding: 100px 80px;
    background: #f5f5f5;
    display: flex;
    gap: 60px;
}

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #1a1a1a;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.testimonial-card:nth-child(2) {
    transform: rotate(1deg);
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-5px);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7a7a7a;
    font-weight: 600;
}

.form-section-asymmetric {
    padding: 120px 80px;
    background: #ffffff;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro-left {
    flex: 1;
}

.form-intro-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a5a5a;
}

.form-container-right {
    flex: 1.3;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
    transform: translateY(40px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.values-split {
    padding: 100px 80px;
    background: #f0f0f0;
    display: flex;
    gap: 60px;
    align-items: center;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.values-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.values-image {
    flex: 1;
    background: #ccc8c3;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 30px 80px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 15px;
    color: #b0b0b0;
}

.footer-nav,
.footer-legal,
.footer-contact {
    flex: 1;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-nav a,
.footer-legal a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #ffffff;
}

.footer-contact p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 8px;
}

.footer-disclaimer {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #a0a0a0;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 600px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn-reject {
    background: #e0e0e0;
    color: #2a2a2a;
}

.cookie-btn-reject:hover {
    background: #d0d0d0;
}

.cookie-link {
    font-size: 13px;
    color: #5a5a5a;
    text-decoration: underline;
}

.about-hero-diagonal {
    padding: 140px 80px 80px 80px;
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.about-text-offset {
    max-width: 800px;
    margin-left: 10%;
}

.about-text-offset h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-intro-large {
    font-size: 26px;
    line-height: 1.7;
    color: #4a4a4a;
    font-weight: 300;
}

.about-story-asymmetric {
    padding: 100px 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: #ffffff;
}

.story-image-left {
    flex: 1;
    background: #d4c4b0;
}

.story-image-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

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

.story-content-right h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.philosophy-offset {
    padding: 100px 80px;
    background: #f9f9f9;
}

.philosophy-content-narrow {
    max-width: 750px;
    margin-left: 15%;
}

.philosophy-content-narrow h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.team-stagger {
    padding: 100px 80px;
    background: #ffffff;
}

.team-title-offset {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-right: 20%;
    text-align: right;
    color: #1a1a1a;
}

.team-members-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.team-member-large,
.team-member-small {
    padding: 40px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.team-member-large:hover,
.team-member-small:hover {
    transform: translateY(-5px);
}

.team-member-large h3,
.team-member-small h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-role {
    font-size: 15px;
    color: #7a7a7a;
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member-large p,
.team-member-small p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.materials-split {
    padding: 100px 80px;
    background: #f0f0f0;
    display: flex;
    gap: 60px;
    align-items: center;
}

.materials-text {
    flex: 1.2;
}

.materials-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.materials-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.materials-image {
    flex: 1;
    background: #ccc8c3;
}

.materials-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.values-cards-offset {
    padding: 100px 80px;
    background: #ffffff;
}

.values-cards-offset h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-left: 10%;
    color: #1a1a1a;
}

.values-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card-diagonal {
    padding: 40px;
    background: #f9f9f9;
    border-left: 5px solid #1a1a1a;
    transition: transform 0.3s ease;
}

.value-card-diagonal:hover {
    transform: translateX(10px);
}

.value-card-diagonal h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card-diagonal p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.cta-about-asymmetric {
    padding: 80px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    margin: 60px 80px;
    border-radius: 8px;
}

.cta-about-asymmetric h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-about-asymmetric p {
    font-size: 18px;
    color: #d4d4d4;
    margin-bottom: 30px;
}

.cta-inline {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #f0f0f0;
}

.services-header-offset {
    padding: 140px 80px 80px 80px;
    background: #f5f5f5;
}

.services-header-offset h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
    margin-left: 10%;
}

.services-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #5a5a5a;
    max-width: 750px;
    margin-left: 10%;
}

.services-detail-asymmetric {
    padding: 60px 80px 120px 80px;
    background: #ffffff;
}

.service-detail-large,
.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-image {
    flex: 1;
    background: #d4c4b0;
}

.service-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

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

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 0;
}

.cta-service {
    display: inline-block;
    padding: 14px 35px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #333333;
    transform: translateY(-2px);
}

.process-timeline-offset {
    padding: 100px 80px;
    background: #f9f9f9;
}

.process-timeline-offset h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.timeline-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-marker {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.timeline-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.timeline-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.faq-asymmetric {
    padding: 100px 80px;
    background: #ffffff;
}

.faq-asymmetric h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-left: 15%;
    color: #1a1a1a;
}

.faq-list-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 850px;
    margin-left: 10%;
}

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.contact-header-offset {
    padding: 140px 80px 80px 80px;
    background: #f5f5f5;
}

.contact-header-offset h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #5a5a5a;
    max-width: 700px;
}

.contact-layout-asymmetric {
    padding: 100px 80px;
    display: flex;
    gap: 80px;
    background: #ffffff;
}

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

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-note {
    font-size: 15px;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 10px;
}

.contact-map-right {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.map-placeholder p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.contact-additional-offset {
    padding: 100px 80px;
    background: #f9f9f9;
}

.contact-additional-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.contact-methods-asymmetric {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.method-card {
    padding: 35px;
    background: #ffffff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.method-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.method-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.cta-method {
    display: inline-block;
    padding: 12px 28px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-method:hover {
    background: #333333;
}

.faq-contact-offset {
    padding: 100px 80px;
    background: #ffffff;
}

.faq-contact-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-contact-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.faq-contact-item {
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid #1a1a1a;
}

.faq-contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.thanks-hero-center {
    padding: 140px 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.thanks-service-confirmation {
    margin-bottom: 40px;
}

.service-selected {
    font-size: 18px;
    color: #1a1a1a;
    padding: 15px 25px;
    background: #f0f0f0;
    border-radius: 6px;
    display: inline-block;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1a1a1a;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 6px;
}

.step-number {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.thanks-additional-info {
    padding: 100px 80px;
    background: #ffffff;
}

.thanks-additional-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    padding: 35px;
    background: #f9f9f9;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.link-inline {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #4a4a4a;
}

.legal-content {
    padding: 140px 80px 100px 80px;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 15px;
    color: #7a7a7a;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2a2a2a;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.legal-section a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #4a4a4a;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

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

.cookies-table th {
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table td {
    color: #5a5a5a;
}

@media (max-width: 1024px) {
    .nav-floating {
        right: 20px;
        padding: 15px 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-diagonal {
        clip-path: none;
        min-height: 400px;
    }

    .hero-title-large {
        font-size: 52px;
    }

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

    .service-card-large,
    .service-card-small,
    .service-card-wide,
    .service-card-medium {
        grid-column: span 1;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .form-container-right {
        transform: translateY(0);
    }

    .testimonial-offset {
        flex-direction: column;
    }

    .about-story-asymmetric,
    .values-split,
    .materials-split,
    .service-detail-large,
    .service-detail-split,
    .contact-layout-asymmetric {
        flex-direction: column;
    }

    .team-members-asymmetric {
        grid-template-columns: 1fr;
    }

    .values-grid-asymmetric,
    .steps-grid,
    .info-cards,
    .contact-methods-asymmetric {
        grid-template-columns: 1fr;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 42px;
    }

    .hero-content-offset,
    .intro-offset,
    .services-asymmetric,
    .process-stagger,
    .testimonial-offset,
    .form-section-asymmetric,
    .values-split,
    .footer-asymmetric,
    .about-hero-diagonal,
    .about-story-asymmetric,
    .philosophy-offset,
    .team-stagger,
    .materials-split,
    .values-cards-offset,
    .services-header-offset,
    .services-detail-asymmetric,
    .process-timeline-offset,
    .faq-asymmetric,
    .contact-header-offset,
    .contact-layout-asymmetric,
    .contact-additional-offset,
    .faq-contact-offset,
    .thanks-hero-center,
    .thanks-additional-info,
    .legal-content {
        padding: 60px 30px;
    }

    .cta-diagonal {
        padding: 60px 30px;
    }

    .section-header-diagonal,
    .intro-narrow,
    .philosophy-content-narrow,
    .process-title-offset,
    .team-title-offset,
    .values-cards-offset h2,
    .faq-asymmetric h2,
    .about-text-offset,
    .services-header-offset h1 {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .faq-list-offset {
        margin-left: 0;
    }
}