* {
    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.6;
    color: #2a2a2a;
    background-color: #fafafa;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

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

.main-nav a {
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2d5f3f;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f5f5f5;
}

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

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

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

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2d5f3f;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f4229;
}

.features-split {
    background-color: #ffffff;
}

.feature-block {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.feature-block.left {
    flex-direction: row;
}

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

.feature-text {
    flex: 1;
    padding: 60px 50px;
}

.feature-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.feature-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.feature-image {
    flex: 1;
    background-color: #e8e4db;
    overflow: hidden;
}

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

.services-preview {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2d5f3f;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d4cfc0;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 25px 12px;
    color: #2d5f3f;
}

.service-card p {
    font-size: 15px;
    margin: 0 25px 15px;
    color: #4a4a4a;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    margin: 15px 25px;
    color: #2d5f3f;
}

.service-card .select-service {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #1f4229;
}

.form-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

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

.form-intro h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.form-intro p {
    font-size: 17px;
    color: #4a4a4a;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1f4229;
}

.disclaimer-section {
    background-color: #f0f0f0;
    padding: 40px 0;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.main-footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b0b0b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    padding: 20px;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
}

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

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

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

.btn-accept:hover {
    background-color: #1f4229;
}

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

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

.page-header {
    background-color: #2d5f3f;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 42px;
}

.about-split,
.services-detailed {
    background-color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.about-content.left {
    flex-direction: row;
}

.about-content.right {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    padding: 60px 50px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
}

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

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

.service-detail {
    display: flex;
    align-items: center;
    min-height: 550px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail.left {
    flex-direction: row;
}

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

.service-info {
    flex: 1;
    padding: 60px 50px;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5f3f;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-info ul {
    margin: 20px 0 20px 20px;
}

.service-info ul li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #4a4a4a;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
}

.service-info .select-service {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-info .select-service:hover {
    background-color: #1f4229;
}

.service-visual {
    flex: 1;
    background-color: #e8e4db;
    overflow: hidden;
}

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

.contact-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2d5f3f;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5f3f;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.no-link {
    pointer-events: none;
    user-select: text;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #e8e4db;
}

.location-note {
    margin-top: 30px;
    padding: 25px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.location-note h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.location-note p {
    font-size: 15px;
    color: #4a4a4a;
}

.thanks-section {
    background-color: #ffffff;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2d5f3f;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-confirmation {
    margin: 25px 0;
    padding: 20px;
    background-color: #f0f7f3;
    border-radius: 4px;
}

.selected-service-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.selected-service-name {
    font-size: 20px;
    font-weight: 600;
    color: #2d5f3f;
}

.next-steps {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1f4229;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
    padding: 10px 26px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.legal-content {
    background-color: #ffffff;
    padding: 60px 0;
}

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

.update-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2d5f3f;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.legal-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-text ul {
    margin: 15px 0 15px 25px;
}

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

@media (max-width: 768px) {
    .hero-split,
    .feature-block,
    .about-content,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .feature-block.right,
    .about-content.right,
    .service-detail.right {
        flex-direction: column;
    }

    .hero-image {
        min-height: 300px;
    }

    .service-card {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
