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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAFAFA;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFF;
    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;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #4A7C59;
    color: #FFF;
}

.cookie-btn.accept:hover {
    background-color: #3A6347;
}

.cookie-btn.reject {
    background-color: #6C757D;
    color: #FFF;
}

.cookie-btn.reject:hover {
    background-color: #5A6268;
}

.header {
    background-color: #FFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    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;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #4A7C59;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #4A7C59;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    border-left: 1px solid #DDD;
    padding-left: 20px;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4A7C59;
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #3A6347;
}

.intro-split {
    display: flex;
}

.intro-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background-color: #FFF;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.intro-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.services-showcase {
    padding: 80px 40px;
    background-color: #F9F9F9;
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 450px;
    background-color: #FFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #4A7C59;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 30px;
    background-color: #4A7C59;
    color: #FFF;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #3A6347;
}

.form-section {
    padding: 80px 40px;
    background-color: #FFF;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.form-intro p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.selected-service-display {
    padding: 20px;
    background-color: #F0F7F4;
    border-left: 4px solid #4A7C59;
    border-radius: 5px;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.selected-service-display div {
    font-size: 15px;
    color: #555;
    margin-bottom: 5px;
}

.form-wrapper {
    flex: 1;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #DDD;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A7C59;
}

.submit-btn {
    padding: 15px 40px;
    background-color: #4A7C59;
    color: #FFF;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #3A6347;
}

.submit-btn:disabled {
    background-color: #CCC;
    cursor: not-allowed;
}

.trust-split {
    display: flex;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #F5F5F0;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2C2C2C;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4A7C59;
}

.trust-item p {
    font-size: 15px;
    color: #555;
}

.trust-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #FFF9E6;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.disclaimer-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.footer {
    background-color: #2C2C2C;
    color: #FFF;
    padding: 60px 40px 20px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFF;
}

.footer-column p {
    font-size: 14px;
    color: #CCC;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #CCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #4A7C59;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #4A7C59;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-info {
    background-color: #F0F7F4;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.thanks-info p {
    font-size: 16px;
    color: #666;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #4A7C59;
    color: #FFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-link:hover {
    background-color: #3A6347;
}

.about-hero {
    padding: 100px 40px;
    background-color: #F5F5F0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.about-hero p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
}

.about-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #FFF;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.about-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 80px 40px;
    background-color: #F9F9F9;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2C2C2C;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4A7C59;
}

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

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

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

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

.contact-info-section {
    padding: 80px 40px;
    background-color: #FFF;
}

.contact-info-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #4A7C59;
}

.contact-info-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #4A7C59;
}

.legal-container p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-container ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .about-split {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

    .service-image {
        min-height: 250px;
    }

    .form-container-split,
    .contact-info-grid {
        flex-direction: column;
    }

    .nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .hero-content h1,
    .about-hero h1 {
        font-size: 36px;
    }

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

    .header-container {
        flex-direction: column;
        gap: 15px;
    }
}