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

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    opacity: 0.8;
}

.ad-disclosure {
    background-color: #f4f4f4;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5f2d;
    opacity: 1;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f9f9f9;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c5f2d;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c5f2d;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 1;
}

.intro-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.intro-text {
    flex: 2;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background-color: #f4f4f4;
    padding: 35px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.services-preview {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.services-preview h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-card {
    display: flex;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card img {
    width: 500px;
    height: 380px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.service-content h3 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 15px 0;
}

.service-link {
    color: #2c5f2d;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
    opacity: 1;
}

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

.contact-form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.submit-btn {
    padding: 16px 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.trust-section {
    padding: 100px 40px;
    background-color: #f4f4f4;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 42px;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-wrapper > p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-points {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-point {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.trust-point h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 700;
}

.trust-point p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
}

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

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

.footer-col a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px !important;
    line-height: 1.6 !important;
    margin-top: 15px !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-header {
    padding: 100px 40px 80px;
    background-color: #f9f9f9;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    color: #666;
}

.service-detail {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail.alternate {
    background-color: #f9f9f9;
}

.detail-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.detail-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 15px 0 25px;
}

.detail-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #333;
    font-weight: 700;
}

.detail-content ul {
    list-style: none;
    margin: 20px 0;
}

.detail-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 20px;
    font-weight: bold;
}

.detail-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
    opacity: 1;
}

.process-section {
    padding: 80px 40px;
    background-color: #f4f4f4;
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.process-step {
    flex: 1;
    text-align: center;
    padding: 40px 25px;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.about-hero {
    display: flex;
    min-height: 75vh;
    background-color: #f9f9f9;
}

.about-hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c5f2d;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.95;
}

.about-hero-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.story-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.story-content h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.values-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-card {
    flex: 0 0 calc(50% - 18px);
    padding: 40px 35px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.expertise-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.expertise-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.expertise-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.expertise-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.approach-section {
    padding: 100px 40px;
    background-color: #f4f4f4;
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-item {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.approach-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.commitment-section {
    padding: 100px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-align: center;
}

.commitment-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-wrapper h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.commitment-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 25px;
}

.commitment-cta {
    margin-top: 40px;
}

.commitment-cta .cta-primary {
    background-color: #ffffff;
    color: #2c5f2d;
}

.contact-hero {
    padding: 100px 40px 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero p {
    font-size: 20px;
    color: #666;
}

.contact-main {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.info-block h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c5f2d;
    font-weight: 700;
}

.info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.email-text {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.note {
    font-size: 15px !important;
    color: #666 !important;
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #666;
}

.contact-visual {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.contact-visual img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #ffffff;
}

.visual-overlay h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.visual-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.overlay-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #2c5f2d;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.overlay-cta:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.location-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.location-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.location-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 900px;
    margin: 0 auto 30px;
}

.location-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.location-note p {
    font-size: 16px;
    color: #444;
    margin: 0;
}

.contact-cta-section {
    padding: 100px 40px;
    background-color: #2c5f2d;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-content .cta-primary {
    background-color: #ffffff;
    color: #2c5f2d;
}

.thanks-hero {
    padding: 120px 40px 80px;
    background-color: #f9f9f9;
    text-align: center;
}

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

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
}

.service-confirm {
    font-size: 18px;
    color: #2c5f2d;
    font-weight: 600;
}

.next-steps {
    padding: 80px 40px;
    background-color: #ffffff;
}

.next-steps h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.step-item {
    flex: 1;
    text-align: center;
    padding: 35px 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.thanks-actions {
    padding: 80px 40px;
    background-color: #f4f4f4;
    text-align: center;
}

.actions-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.actions-wrapper p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.action-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
    opacity: 1;
}

.action-btn.secondary {
    background-color: #666;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c5f2d;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #333;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.legal-back {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

.legal-back a {
    color: #2c5f2d;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .hero-split,
    .about-hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content,
    .about-hero-content {
        padding: 60px 40px;
    }

    .hero-image img,
    .about-hero-image img {
        height: 400px;
    }

    .intro-wrapper,
    .detail-layout,
    .expertise-layout,
    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

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

    .service-card img {
        width: 100%;
        height: 300px;
    }

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

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

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

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }
}

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

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        gap: 20px;
    }

    .hero-content h1,
    .about-hero-content h1,
    .page-header h1,
    .thanks-hero h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .services-preview h2,
    .trust-wrapper h2,
    .values-section h2,
    .process-section h2,
    .next-steps h2,
    .story-content h2,
    .expertise-text h2,
    .approach-section h2,
    .commitment-wrapper h2,
    .location-section h2,
    .cta-content h2,
    .detail-content h2,
    .legal-container h1 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

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

    .footer-col {
        flex: 0 0 100%;
    }

    .action-links {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px;
    }

    .hero-content,
    .about-hero-content {
        padding: 40px 25px;
    }

    section {
        padding: 60px 25px !important;
    }

    .service-content,
    .detail-content {
        padding: 30px 25px !important;
    }
}