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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1f3d29;
    --primary-light: #4a8159;
    --secondary-color: #7a9d8f;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #d4a574;
    --error-color: #c92a2a;
    --success-color: #2d5a3d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.main-nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.3);
}

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

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

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

.intro-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.intro-section h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-split {
    background-color: var(--bg-white);
}

.service-item {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-text,
.service-image {
    flex: 1;
}

.service-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.service-item:nth-child(even) .service-text {
    background-color: var(--bg-light);
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: block;
}

.service-image {
    background-color: var(--secondary-color);
    position: relative;
}

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

.btn-service {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.3);
}

.testimonial-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.testimonial {
    margin-bottom: 48px;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.why-section-split {
    display: flex;
    min-height: 600px;
}

.why-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.why-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.why-content h3 {
    font-size: 34px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.why-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-section {
    padding: 100px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section h3 {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-section .cta-primary,
.cta-section .cta-secondary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .cta-primary:hover,
.cta-section .cta-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--bg-light);
}

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h3 {
    font-size: 34px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: white;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.3);
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

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

.page-hero {
    padding: 100px 40px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.services-grid {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.service-card-image {
    flex: 0 0 45%;
    background-color: var(--secondary-color);
}

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

.service-card-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
    font-size: 15px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.process-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.process-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    min-width: 240px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.about-hero-split {
    display: flex;
    min-height: 600px;
}

.about-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.about-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.about-content p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.8;
}

.story-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.story-section h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.values-split {
    background-color: var(--bg-white);
}

.value-item {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.value-item.reverse {
    flex-direction: row-reverse;
}

.value-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

.value-item:nth-child(even) .value-text {
    background-color: var(--bg-light);
}

.value-text h3 {
    font-size: 30px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.value-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.value-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.team-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.team-section h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
    line-height: 1.8;
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.warranty-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.warranty-section h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.warranty-section p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-hero {
    padding: 80px 40px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.contact-map-side {
    flex: 1;
    background-color: var(--secondary-color);
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-block {
    margin-bottom: 48px;
}

.contact-block:last-child {
    margin-bottom: 0;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-block strong {
    color: var(--text-dark);
}

.contact-info-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.contact-info-section h3 {
    font-size: 32px;
    margin-bottom: 48px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

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

.info-item {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.faq-section h3 {
    font-size: 32px;
    margin-bottom: 48px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 40px;
    background-color: var(--bg-light);
    min-height: 70vh;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
    line-height: 1.8;
}

.service-requested {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-requested h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-requested p {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

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

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

.contact-info-box {
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.legal-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.legal-page h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-page h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .services-split .service-item,
    .why-section-split,
    .form-section-split,
    .about-hero-split,
    .values-split .value-item,
    .contact-split {
        flex-direction: column;
    }

    .service-item.reverse,
    .value-item.reverse {
        flex-direction: column;
    }

    .hero-content,
    .service-text,
    .why-content,
    .form-content,
    .about-content,
    .value-text,
    .contact-info-side {
        padding: 60px 40px;
    }

    .hero-image,
    .service-image,
    .why-image,
    .form-image,
    .about-image,
    .value-image,
    .contact-map-side {
        min-height: 400px;
    }

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

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

    .service-card-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }

    .main-nav ul {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-text h2,
    .page-hero h2,
    .about-content h2,
    .thanks-content h2 {
        font-size: 32px;
    }

    .intro-section h3,
    .service-text h3,
    .why-content h3,
    .form-content h3,
    .story-section h3,
    .value-text h3,
    .warranty-section h3,
    .team-section h3,
    .contact-info-section h3,
    .faq-section h3,
    .legal-page h2 {
        font-size: 28px;
    }

    .cta-section h3 {
        font-size: 30px;
    }

    .service-card-content h3 {
        font-size: 24px;
    }

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

    .approach-grid,
    .info-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .service-text,
    .why-content,
    .form-content,
    .about-content,
    .value-text,
    .contact-info-side {
        padding: 40px 24px;
    }

    .intro-section,
    .testimonial-section,
    .cta-section,
    .story-section,
    .team-section,
    .warranty-section,
    .contact-info-section,
    .faq-section,
    .process-section,
    .thanks-section {
        padding: 60px 24px;
    }

    .services-grid {
        padding: 60px 24px;
    }

    .service-card-content {
        padding: 32px 24px;
    }
}