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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a7c59;
    color: #fff;
}

.btn-accept:hover {
    background: #3d6849;
}

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a7c59;
}

.ad-label {
    font-size: 0.85rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background: #f0f0f0;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem;
    background: #f5f1ed;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cta-primary:hover {
    background: #3d6849;
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.intro-section {
    padding: 5rem 2rem;
}

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

.intro-image-side,
.intro-text-side {
    flex: 1;
}

.intro-image-side {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.intro-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.intro-text-side p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.services-showcase {
    padding: 5rem 2rem;
    background: #fff;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-item {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

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

.service-content,
.service-visual {
    flex: 1;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background: #fafaf8;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    padding: 1rem 2rem;
    background: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #4a7c59;
    transform: translateX(4px);
}

.service-visual {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 4px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #2c2c2c;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.selected-service-display,
.selected-price-display {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.selected-service-display span,
.selected-price-display span {
    color: #4a7c59;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #4a7c59;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 5rem 2rem;
    background: #f5f1ed;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c2c2c;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.trust-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    max-width: 350px;
}

.trust-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.trust-card p {
    color: #666;
    line-height: 1.7;
}

.main-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

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

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

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

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

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}