* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #27ae60;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin: 12px 0;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 16px;
    transition: color 0.3s;
    display: block;
}

.nav-menu a:hover {
    color: #27ae60;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 8%;
    margin-top: 60px;
}

.hero-content-offset {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}

.hero-text-block {
    flex: 1;
    min-width: 400px;
    max-width: 550px;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a252f;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-image-overlay {
    flex: 1;
    min-width: 500px;
    position: relative;
    margin-left: -80px;
    margin-top: 40px;
}

.hero-image-overlay img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #27ae60;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #27ae60;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background: #27ae60;
    color: white;
}

.cta-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-link:hover {
    color: #229954;
    text-decoration: underline;
}

.offset-intro {
    display: flex;
    padding: 120px 8% 100px 12%;
    background: #f8f9fa;
    align-items: flex-start;
}

.intro-left {
    flex: 2;
    padding-right: 80px;
}

.intro-left h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a252f;
    line-height: 1.3;
}

.intro-left p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #546e7a;
}

.intro-right-card {
    flex: 1;
    margin-top: 60px;
}

.stat-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.5;
}

.image-text-overlap {
    padding: 100px 8%;
    background: white;
}

.overlap-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.overlap-image {
    flex: 1;
    min-width: 450px;
    background: #e8f5e9;
}

.overlap-image img {
    width: 100%;
    height: auto;
    display: block;
}

.overlap-text {
    flex: 1;
    min-width: 400px;
    background: white;
    padding: 60px;
    margin-left: -100px;
    margin-top: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.overlap-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.overlap-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.services-asymmetric {
    padding: 120px 8% 120px 15%;
    background: #fafafa;
}

.section-header-offset {
    margin-bottom: 70px;
    margin-left: -80px;
}

.section-header-offset h2 {
    font-size: 48px;
    color: #1a252f;
    margin-bottom: 15px;
}

.section-header-offset p {
    font-size: 20px;
    color: #546e7a;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card.large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.service-card.medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

.service-card.small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #e8f5e9;
}

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

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.select-service-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.testimonial-offset {
    padding: 100px 12% 100px 20%;
    background: white;
}

.testimonial-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial-block {
    flex: 1;
    min-width: 350px;
}

.testimonial-block blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: #1a252f;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 30px;
    border-left: 4px solid #27ae60;
}

.testimonial-block cite {
    font-size: 16px;
    color: #546e7a;
    font-style: normal;
}

.form-section-offset {
    padding: 100px 15% 120px 8%;
    background: #f8f9fa;
}

.form-container-asymmetric {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    min-width: 300px;
}

.form-intro h2 {
    font-size: 40px;
    color: #1a252f;
    margin-bottom: 25px;
    line-height: 1.3;
}

.form-intro p {
    font-size: 18px;
    color: #546e7a;
}

.contact-form {
    flex: 1.2;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a252f;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #27ae60;
}

.submit-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

.bottom-cta {
    padding: 80px 8%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
}

.bottom-cta-content h3 {
    font-size: 38px;
    color: white;
    margin-bottom: 15px;
}

.bottom-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.bottom-cta .cta-secondary {
    background: white;
    color: #27ae60;
    border: none;
}

.bottom-cta .cta-secondary:hover {
    background: #f8f9fa;
}

.footer-asymmetric {
    background: #1a252f;
    color: white;
    padding: 60px 8% 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

.cookie-content p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
}

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

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

.cookie-accept {
    background: #27ae60;
    color: white;
}

.cookie-accept:hover {
    background: #229954;
}

.cookie-reject {
    background: #e0e0e0;
    color: #1a252f;
}

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

.cookie-policy-link {
    color: #27ae60;
    text-decoration: none;
    font-size: 14px;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 140px 8% 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 52px;
    color: #1a252f;
    margin-bottom: 20px;
}

.about-hero p,
.services-hero p,
.contact-hero p {
    font-size: 22px;
    color: #546e7a;
}

.about-story {
    padding: 100px 8%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-block-left {
    flex: 1;
    min-width: 400px;
    background: #e8f5e9;
}

.story-block-left img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content-right {
    flex: 1;
    min-width: 400px;
}

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

.story-content-right p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-offset {
    padding: 100px 12% 100px 8%;
    background: #f8f9fa;
}

.values-header {
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 42px;
    color: #1a252f;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.team-asymmetric {
    padding: 100px 8%;
    background: white;
}

.team-intro {
    margin-bottom: 60px;
    margin-left: 8%;
}

.team-intro h2 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 15px;
}

.team-intro p {
    font-size: 20px;
    color: #546e7a;
}

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

.team-member {
    flex: 1;
    min-width: 300px;
}

.member-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #e8f5e9;
}

.member-image img {
    width: 100%;
    height: 100%;
}

.member-info h3 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-info p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.approach-section {
    padding: 100px 8%;
    background: #f8f9fa;
}

.approach-content h2 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 60px;
    text-align: center;
}

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

.approach-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 24px;
    color: #1a252f;
    margin-bottom: 15px;
}

.approach-step p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.cta-about {
    padding: 80px 8%;
    background: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    color: #1a252f;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 8%;
    background: white;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background: #e8f5e9;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    min-width: 400px;
}

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

.service-detail-content h3 {
    font-size: 22px;
    color: #1a252f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.price-label {
    font-size: 18px;
    color: #546e7a;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 20px;
}

.services-cta {
    padding: 80px 8%;
    background: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
}

.contact-main {
    padding: 80px 8%;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 350px;
}

.contact-info-block h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #27ae60;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-note {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    min-width: 400px;
    background: #e8f5e9;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.location-info {
    padding: 80px 8%;
    background: #f8f9fa;
}

.location-info h2 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.location-col {
    flex: 1;
    min-width: 300px;
}

.location-col h3 {
    font-size: 22px;
    color: #27ae60;
    margin-bottom: 15px;
}

.location-col p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 8%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 25px;
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.next-steps h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-box {
    flex: 1;
    min-width: 200px;
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 10px;
}

.step-num {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.step-box h3 {
    font-size: 20px;
    color: #1a252f;
    margin-bottom: 10px;
}

.step-box p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

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

.legal-page {
    padding: 100px 8%;
    background: white;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a252f;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #1a252f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    color: #1a252f;
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a252f;
}

.cookie-table td {
    color: #546e7a;
    font-size: 15px;
}

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

    .hero-asymmetric {
        margin-left: 5%;
    }

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

    .section-header-offset {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        position: fixed;
        top: 40px;
        right: 10px;
        padding: 15px;
        width: 60px;
    }

    .nav-brand {
        font-size: 16px;
        margin-bottom: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        min-width: 200px;
    }

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

    .hero-text-block {
        min-width: 100%;
        padding-right: 0;
    }

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

    .hero-image-overlay {
        min-width: 100%;
        margin-left: 0;
    }

    .offset-intro {
        flex-direction: column;
        padding: 80px 5%;
    }

    .intro-left {
        padding-right: 0;
    }

    .intro-right-card {
        margin-top: 30px;
        width: 100%;
    }

    .overlap-text {
        margin-left: 0;
        margin-top: 30px;
        padding: 40px;
    }

    .services-asymmetric {
        padding: 80px 5%;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        flex: 1 1 100%;
    }

    .form-container-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form {
        padding: 35px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text-block h1 {
        font-size: 28px;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .section-header-offset h2 {
        font-size: 32px;
    }
}