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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5f3f;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    border-left: 2px solid #e0e0e0;
    padding-left: 1rem;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f5f5f5;
}

.hero-content-offset {
    max-width: 650px;
    padding: 3rem;
    margin-left: 8%;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #2d5f3f;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #444;
    line-height: 1.5;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 12%;
    width: 55%;
    transform: rotate(3deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

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

.intro-offset {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.intro-text-block {
    max-width: 850px;
    margin-left: 15%;
}

.intro-text-block h2 {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.intro-text-block p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.insight-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.insight-left {
    flex: 0 0 45%;
    transform: translateX(-30px);
}

.insight-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
}

.insight-right {
    flex: 1;
}

.insight-right h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.insight-list {
    list-style: none;
}

.insight-list li {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: bold;
}

.trust-block {
    padding: 6rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
}

.trust-content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding-right: 20%;
}

.trust-content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.trust-content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.services-preview-asymmetric {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-header-offset {
    max-width: 900px;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.services-header-offset h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card-1 {
    flex: 0 0 calc(50% - 1.25rem);
    transform: rotate(-1deg);
}

.service-card-2 {
    flex: 0 0 calc(50% - 1.25rem);
    transform: rotate(1.5deg);
    margin-top: 3rem;
}

.service-card-3 {
    flex: 0 0 calc(50% - 1.25rem);
    transform: rotate(0.5deg);
}

.service-card-4 {
    flex: 0 0 calc(50% - 1.25rem);
    transform: rotate(-1.5deg);
    margin-top: 2rem;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #555;
    flex: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 1rem 1.5rem;
}

.btn-cta {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    margin: 0 1.5rem 1.5rem;
}

.btn-cta:hover {
    background-color: #234a31;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.testimonial-wrapper {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

.problem-amplification {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.problem-content-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.problem-text {
    flex: 1;
    padding-right: 3rem;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.7;
}

.problem-visual {
    flex: 0 0 40%;
    transform: translateY(30px) rotate(-2deg);
}

.problem-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.12);
}

.form-section-offset {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 15%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

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

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

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

.btn-submit {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #234a31;
}

.final-cta-asymmetric {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: #cccccc;
}

.footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #234a31;
}

.btn-cookie-reject {
    background-color: #555;
    color: #ffffff;
}

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

.page-header-asymmetric {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #2d5f3f 0%, #1a3d29 100%);
    color: #ffffff;
    transform: skewY(-2deg);
    margin-bottom: 3rem;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 800;
}

.about-story {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text-offset {
    flex: 1;
    padding-left: 5%;
}

.about-text-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-text-offset p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.7;
}

.about-image-overlap {
    flex: 0 0 45%;
    transform: rotate(2deg);
}

.about-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.mission-content-narrow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.team-section-asymmetric {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-header {
    max-width: 1300px;
    margin: 0 auto 3rem;
    padding-left: 10%;
}

.team-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.team-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 0 calc(33.333% - 2rem);
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    background-color: #e0e0e0;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-member p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.value-card {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.cta-about {
    padding: 4rem 2rem;
    background-color: #2d5f3f;
    text-align: center;
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-content .btn-cta {
    margin: 0.5rem;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2d5f3f;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-block {
    max-width: 1300px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-detail-1 {
    transform: translateX(5%);
}

.service-detail-2 {
    transform: translateX(-5%);
}

.service-detail-3 {
    transform: translateX(3%);
}

.service-detail-4 {
    transform: translateX(-3%);
}

.service-detail-5 {
    transform: translateX(4%);
}

.service-detail-6 {
    transform: translateX(-4%);
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    margin: 1.5rem 0;
}

.form-section-services {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.contact-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.contact-info-block {
    flex: 0 0 40%;
    transform: translateY(20px);
}

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d5f3f;
}

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

.contact-visual {
    flex: 1;
    transform: rotate(-2deg);
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-additional {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.additional-content {
    max-width: 900px;
    margin: 0 auto;
}

.additional-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.thanks-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.thanks-service {
    font-size: 1.1rem;
    color: #2d5f3f;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

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

.next-steps-content h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.step-card {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d5f3f;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

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

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

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

.legal-container ul li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.legal-container a {
    color: #2d5f3f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-container a:hover {
    color: #1a3d29;
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .hero-content-offset {
        margin-left: 5%;
    }

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

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4 {
        flex: 0 0 calc(50% - 1.25rem);
        transform: none;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .ad-disclosure {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 0.5rem;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        transform: none;
    }

    .intro-text-block {
        margin-left: 0;
    }

    .intro-text-block h2 {
        font-size: 1.8rem;
    }

    .insight-container,
    .problem-content-asymmetric,
    .about-container,
    .contact-container-asymmetric {
        flex-direction: column;
    }

    .insight-left,
    .problem-visual,
    .about-image-overlap,
    .contact-visual {
        transform: none;
        flex: 1;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4 {
        flex: 0 0 100%;
    }

    .form-container {
        margin-left: 0;
    }

    .service-detail-block {
        flex-direction: column;
        transform: none !important;
    }

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

    .team-member,
    .value-card,
    .step-card {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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