:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c28;
    --accent-color: #7ba84d;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    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: var(--text-dark);
    background: var(--bg-white);
}

.ad-notice {
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

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

.hero-content-offset {
    position: relative;
    z-index: 2;
    width: 45%;
    padding: 80px 60px;
    margin-left: 8%;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 45px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateX(-20px);
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image-diagonal {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 60%;
    height: 80%;
    transform: rotate(-3deg);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(74, 124, 40, 0.3);
}

.cta-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 40, 0.4);
}

.intro-offset {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-left {
    flex: 1;
    padding-left: 10%;
}

.intro-left h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image-float {
    flex: 0 0 400px;
    transform: translateY(-40px) rotate(2deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.intro-image-float img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-asymmetric {
    padding: 120px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-offset {
    margin-left: 12%;
    margin-bottom: 60px;
}

.services-header-offset h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(50% - 20px);
    background: var(--bg-white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-offset-1 {
    transform: translateX(-30px);
}

.card-offset-2 {
    transform: translateX(30px);
}

.card-offset-3 {
    transform: translateX(-20px);
}

.card-offset-4 {
    transform: translateX(20px);
}

.card-offset-5 {
    transform: translateX(-25px);
}

.card-offset-6 {
    transform: translateX(25px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 28px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section-diagonal {
    background: var(--bg-light);
    padding: 100px 30px;
    position: relative;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background: var(--bg-white);
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: skewY(2deg);
}

.form-container-offset h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.form-container-offset p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(74, 124, 40, 0.3);
}

.submit-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 40, 0.4);
}

.trust-section {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.trust-content > p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.trust-points {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    text-align: center;
    max-width: 320px;
}

.trust-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    color: var(--text-light);
}

.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 30px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

.cookie-accept {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background: var(--accent-color);
}

.cookie-reject {
    background: var(--bg-white);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background: var(--border-color);
}

.page-hero-offset {
    padding: 100px 30px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    transform: translateX(-5%);
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 10%;
}

.page-hero-content h1 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 22px;
    color: var(--text-light);
}

.about-story {
    padding: 80px 30px;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.story-text-block {
    flex: 1;
    padding-right: 40px;
}

.story-text-block h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text-block p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image-diagonal {
    flex: 0 0 500px;
    transform: rotate(-2deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.story-image-diagonal img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 80px 30px;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.value-card h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
}

.approach-section {
    padding: 80px 30px;
}

.approach-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.approach-image-float {
    flex: 0 0 450px;
    transform: translateY(20px) rotate(3deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.approach-image-float img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-section-offset {
    padding: 100px 30px;
    background: var(--bg-light);
}

.cta-content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 60px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateX(5%);
}

.cta-content-block h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-block p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(74, 124, 40, 0.3);
}

.cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 40, 0.4);
}

.services-detailed {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 0 0 500px;
    background: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    font-size: 16px;
    color: var(--text-light);
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.service-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.services-cta {
    padding: 80px 30px;
    background: var(--bg-light);
}

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

.services-cta-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-section {
    padding: 80px 30px;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info-block > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-image-offset {
    flex: 0 0 500px;
    transform: translateY(30px) rotate(-2deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-additional {
    padding: 80px 30px;
    background: var(--bg-light);
}

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

.additional-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 40px;
}

.process-step {
    flex: 1;
    background: var(--bg-white);
    padding: 35px;
    box-shadow: var(--shadow);
}

.process-step h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-section {
    padding: 120px 30px;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    margin: 30px 0;
    font-size: 17px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.next-steps {
    padding: 80px 30px;
    background: var(--bg-light);
}

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

.next-steps-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    background: var(--bg-white);
    padding: 35px;
    box-shadow: var(--shadow);
}

.step-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    color: var(--text-light);
}

.legal-page {
    padding: 60px 30px 100px;
}

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

.legal-content h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-content-offset {
        width: 55%;
        padding: 60px 40px;
        margin-left: 5%;
    }

    .hero-text-block h1 {
        font-size: 42px;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

    .trust-points {
        flex-direction: column;
        align-items: center;
    }

    .values-grid {
        flex-direction: column;
    }

    .process-steps,
    .steps-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        width: 100%;
        padding: 40px 20px;
        margin-left: 0;
    }

    .hero-text-block {
        padding: 35px 25px;
        transform: none;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-image-diagonal {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 300px;
        transform: none;
    }

    .intro-wrapper,
    .story-container,
    .approach-wrapper,
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image-float,
    .story-image-diagonal,
    .approach-image-float,
    .contact-image-offset {
        flex: 1;
        width: 100%;
        transform: none;
    }

    .form-container-offset {
        margin: 0 auto;
        padding: 40px 30px;
    }

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

    .page-hero-content {
        padding-left: 0;
    }

    .page-hero-content h1 {
        font-size: 40px;
    }
}
