* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 5%;
    position: relative;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left {
    flex: 0 0 auto;
}

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

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.nav-floating {
    display: flex;
    gap: 2rem;
}

.nav-floating a {
    text-decoration: none;
    color: #2c2416;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-floating a:hover {
    color: #8b7355;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    text-align: right;
}

.hero-offset {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 10%;
    width: 60%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,36,22,0.7) 0%, rgba(44,36,22,0.3) 100%);
}

.hero-text-offset {
    position: relative;
    z-index: 2;
    max-width: 550px;
    margin-left: 55%;
    padding: 3rem;
    background-color: rgba(244, 241, 237, 0.95);
    transform: translateY(40px);
}

.hero-text-offset h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c2416;
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-asymmetric {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.content-block-left {
    flex: 1;
    padding: 5rem 8% 5rem 5%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2416;
    line-height: 1.3;
}

.content-block-left p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.visual-element-right {
    flex: 0 0 35%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #f4f1ed;
    margin-top: 0.5rem;
}

.services-grid {
    padding: 5rem 5%;
    background-color: #f9f7f4;
}

.section-header-offset {
    margin-bottom: 4rem;
    margin-left: 10%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: #666;
}

.service-card-asymmetric {
    display: flex;
    margin-bottom: 3rem;
    min-height: 400px;
    overflow: hidden;
}

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

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

.service-image-wrapper {
    flex: 0 0 45%;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2416;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    font-size: 0.9rem;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
}

.service-features span::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-size: 1.2rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.btn-service {
    align-self: flex-start;
    padding: 0.9rem 2rem;
    background-color: #2c2416;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: inherit;
}

.btn-service:hover {
    background-color: #1a1410;
    transform: translateX(5px);
}

.testimonials-scattered {
    padding: 5rem 5%;
}

.testimonials-scattered h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c2416;
}

.testimonial-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2.5rem;
    background-color: #ffffff;
    position: relative;
}

.testimonial-card.offset-1 {
    margin-left: 0;
    margin-right: 15%;
}

.testimonial-card.offset-2 {
    margin-left: 20%;
    margin-right: 0;
}

.testimonial-card.offset-3 {
    margin-left: 10%;
    margin-right: 10%;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    text-align: right;
}

.form-section-asymmetric {
    display: flex;
    min-height: 70vh;
}

.form-container-offset {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.form-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #e8e3db;
}

.contact-form-asymmetric {
    max-width: 500px;
}

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

.form-step label {
    font-size: 0.95rem;
    color: #f4f1ed;
    margin-bottom: -1rem;
}

.form-step input,
.form-step select,
.form-step textarea {
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

.form-step input::placeholder,
.form-step textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-step select {
    cursor: pointer;
}

.form-step select option {
    background-color: #2c2416;
    color: #ffffff;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #6d5a43;
}

.form-visual-element {
    flex: 0 0 40%;
    overflow: hidden;
}

.form-visual-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 5rem 5%;
}

.trust-content-offset {
    max-width: 1100px;
    margin-left: 10%;
}

.trust-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2416;
}

.trust-points-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-point {
    max-width: 600px;
    padding: 2rem;
    background-color: #ffffff;
}

.trust-point.offset {
    margin-left: 30%;
}

.trust-point h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

.trust-point p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #2c2416;
    color: #e8e3db;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #f4f1ed;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #bcb5a8;
}

.footer-column a {
    display: block;
    color: #bcb5a8;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #f4f1ed;
}

.footer-disclaimer {
    padding: 2rem;
    background-color: rgba(139, 115, 85, 0.2);
    margin-bottom: 2rem;
    border-left: 3px solid #8b7355;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #bcb5a8;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #a39a8b;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2416;
    color: #ffffff;
    padding: 2rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6d5a43;
}

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

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

.about-hero {
    padding: 6rem 5%;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c2416;
}

.lead-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
}

.mission-asymmetric {
    display: flex;
    min-height: 60vh;
}

.mission-text-block {
    flex: 1;
    padding: 5rem 5%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

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

.mission-visual {
    flex: 0 0 45%;
    overflow: hidden;
}

.mission-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 5rem 5%;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c2416;
}

.values-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    padding: 2.5rem;
    background-color: #ffffff;
}

.value-card.offset-1 {
    margin-left: 0;
    margin-right: 20%;
}

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

.value-card.offset-3 {
    margin-left: 25%;
    margin-right: 0;
}

.value-card.offset-4 {
    margin-left: 10%;
    margin-right: 15%;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

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

.approach-section {
    padding: 5rem 5%;
    background-color: #f9f7f4;
}

.approach-content-offset {
    margin-left: 8%;
}

.approach-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2416;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-block {
    max-width: 650px;
    padding: 2.5rem;
    background-color: #ffffff;
}

.approach-block.offset-right {
    margin-left: auto;
    margin-right: 5%;
}

.approach-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

.approach-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.cta-button-light {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c2416;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-light:hover {
    background-color: #f4f1ed;
}

.services-hero {
    padding: 5rem 5%;
    text-align: center;
    color: #ffffff;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #e8e3db;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    display: flex;
    min-height: 600px;
    margin-bottom: 3rem;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-visual {
    flex: 0 0 50%;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c2416;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 2rem;
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

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

.service-benefits li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

.form-section-services {
    padding: 5rem 5%;
}

.form-container-centered {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-container-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

.form-container-centered p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #666;
}

.service-form {
    text-align: left;
}

.service-form label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d4cec5;
    background-color: #ffffff;
    color: #333;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 1.5rem;
}

.service-form select {
    cursor: pointer;
}

.contact-hero {
    padding: 5rem 5%;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2416;
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

.contact-content-asymmetric {
    display: flex;
    min-height: 60vh;
}

.contact-info-block {
    flex: 1;
    padding: 5rem 5%;
    color: #ffffff;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f4f1ed;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.8;
    color: #e8e3db;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
}

.contact-note p {
    font-size: 0.95rem;
    color: #e8e3db;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 0 0 45%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.map-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #e8e3db;
    line-height: 1.7;
}

.map-note {
    margin-top: 2rem;
    font-style: italic;
}

.faq-section {
    padding: 5rem 5%;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c2416;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

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

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e8e3db;
    line-height: 1.8;
}

.selected-service-info {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
}

.selected-service-info p {
    font-size: 1.05rem;
    color: #f4f1ed;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

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

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

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #8b7355;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-item p {
    flex: 1;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-top: 0.5rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #ffffff;
    color: #2c2416;
}

.btn-primary:hover {
    background-color: #f4f1ed;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.additional-info {
    text-align: left;
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
}

.additional-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f4f1ed;
}

.additional-info p {
    font-size: 0.95rem;
    color: #e8e3db;
    line-height: 1.7;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2416;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2416;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2416;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #333;
    line-height: 1.8;
}

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

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

.legal-content a {
    color: #8b7355;
    text-decoration: underline;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.legal-footer p {
    font-size: 0.9rem;
    color: #999;
}

@media (max-width: 1024px) {
    .hero-text-offset {
        margin-left: 50%;
    }

    .service-card-asymmetric.offset-right,
    .service-card-asymmetric.offset-left {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .header-asymmetric {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        align-items: flex-start;
        margin-top: 1.5rem;
    }

    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-offset {
        min-height: auto;
    }

    .hero-image-container {
        position: relative;
        left: 0;
        width: 100%;
        height: 300px;
    }

    .hero-text-offset {
        margin-left: 0;
        transform: none;
    }

    .intro-asymmetric,
    .mission-asymmetric,
    .form-section-asymmetric,
    .contact-content-asymmetric {
        flex-direction: column;
    }

    .service-card-asymmetric,
    .service-detail-card {
        flex-direction: column;
    }

    .service-card-asymmetric.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .testimonial-card.offset-1,
    .testimonial-card.offset-2,
    .testimonial-card.offset-3,
    .value-card.offset-1,
    .value-card.offset-2,
    .value-card.offset-3,
    .value-card.offset-4,
    .trust-point.offset,
    .approach-block.offset-right {
        margin-left: 0;
        margin-right: 0;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }
}
