:root {
    --primary: #2d5a3d;
    --primary-light: #3d7a52;
    --primary-dark: #1e3d29;
    --secondary: #e8a54b;
    --secondary-light: #f4c77d;
    --accent: #c75d3a;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6d6d6d;
    --bg-light: #faf9f7;
    --bg-cream: #f5f3ef;
    --bg-warm: #ede8e0;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-disclosure {
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.header-main {
    padding: 16px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--secondary-light);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-warm);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 36px;
    max-width: 540px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

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

section {
    padding: 100px 0;
}

.section-intro {
    background: var(--white);
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    background-color: var(--bg-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.section-problem {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
}

.problem-content {
    display: flex;
    gap: 80px;
}

.problem-left {
    flex: 1.2;
}

.problem-right {
    flex: 0.8;
}

.problem-list {
    list-style: none;
    margin-top: 32px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.problem-text h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.problem-text p {
    color: var(--text-light);
    font-size: 15px;
}

.problem-image {
    background-color: var(--bg-warm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

.section-solution {
    background: var(--white);
}

.solution-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.solution-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.solution-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.solution-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.solution-card p {
    color: var(--text-medium);
    font-size: 15px;
}

.section-trust {
    background: var(--primary-dark);
    color: var(--white);
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-header .section-label {
    color: var(--secondary-light);
}

.trust-header .section-title {
    color: var(--white);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
}

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
}

.author-info h5 {
    font-size: 16px;
    color: var(--white);
}

.author-info span {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.section-services {
    background: var(--bg-cream);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-row {
    display: flex;
    gap: 24px;
}

.service-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.service-image {
    height: 200px;
    background-color: var(--bg-warm);
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-medium);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 14px;
    color: var(--text-light);
}

.service-card-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.service-card-featured .service-content h3 {
    color: var(--white);
}

.service-card-featured .service-content p {
    color: rgba(255,255,255,0.85);
}

.service-card-featured .price-amount {
    color: var(--secondary);
}

.service-card-featured .price-unit {
    color: rgba(255,255,255,0.7);
}

.section-benefits {
    background: var(--white);
}

.benefits-layout {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.benefits-image {
    flex: 1;
    background-color: var(--bg-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 500px;
}

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

.benefits-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-list {
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-dark);
}

.benefit-text h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.benefit-text p {
    color: var(--text-medium);
    font-size: 15px;
}

.section-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 80px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 18px;
    color: var(--text-medium);
}

.section-form {
    background: var(--bg-light);
}

.form-layout {
    display: flex;
    gap: 60px;
}

.form-info {
    flex: 1;
}

.form-container {
    flex: 1.2;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-medium);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--bg-light);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 8px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 18px;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
}

.info-blocks {
    margin-top: 40px;
}

.info-block {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.info-text h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-text p {
    color: var(--text-medium);
    font-size: 14px;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-main {
    display: flex;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: var(--secondary);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 320px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact {
    flex: 1.2;
}

.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--secondary);
}

.disclaimer {
    background: var(--bg-warm);
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.disclaimer-content {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.disclaimer-content p {
    margin-bottom: 12px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-medium);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--text-medium);
    border: 1px solid rgba(0,0,0,0.15);
}

.cookie-reject:hover {
    background: var(--bg-light);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
    background: var(--white);
}

.page-content h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin: 40px 0 20px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 32px 0 16px;
}

.page-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.page-content ul {
    margin: 16px 0 24px 24px;
    color: var(--text-medium);
}

.page-content li {
    margin-bottom: 8px;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    background: var(--bg-light);
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    background-color: var(--bg-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.about-values {
    background: var(--white);
    padding: 80px 0;
}

.values-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.value-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin-top: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.contact-text h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-text p {
    color: var(--text-medium);
    font-size: 15px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    text-align: center;
    padding: 80px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

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

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

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 80px 0;
}

.service-page-card {
    display: flex;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-page-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-page-image {
    flex: 0 0 400px;
    background-color: var(--bg-cream);
}

.service-page-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.service-page-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-page-content h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.service-page-content p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-page-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.service-page-price .price-amount {
    font-size: 36px;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }

    .intro-grid,
    .problem-content,
    .benefits-layout,
    .form-layout,
    .contact-layout {
        flex-direction: column;
    }

    .trust-stats {
        gap: 40px;
    }

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

    .service-row {
        flex-direction: column;
    }

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

    .footer-brand {
        flex-basis: 100%;
    }

    .about-intro {
        flex-direction: column;
    }

    .values-grid {
        flex-wrap: wrap;
    }

    .value-card {
        flex-basis: calc(50% - 16px);
    }

    .service-page-card,
    .service-page-card:nth-child(even) {
        flex-direction: column;
    }

    .service-page-image {
        flex: none;
        height: 250px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-medium);
        gap: 16px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }

    .btn-group {
        flex-direction: column;
    }

    .section-title {
        font-size: 30px;
    }

    .trust-stats {
        flex-direction: column;
        gap: 32px;
    }

    .stat-number {
        font-size: 42px;
    }

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

    .form-row {
        flex-direction: column;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .value-card {
        flex-basis: 100%;
    }

    .page-header h1 {
        font-size: 32px;
    }
}
