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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

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

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

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

.btn-accept {
    background-color: #8b7355;
    color: #fff;
}

.btn-accept:hover {
    background-color: #6f5c45;
}

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

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-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: #8b7355;
}

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

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

.main-nav a:hover {
    color: #8b7355;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.cta-primary:hover {
    background-color: #6f5c45;
}

.hero-image {
    flex: 1;
    background-color: #d4c4b0;
}

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

.intro-section {
    max-width: 1400px;
    margin: 80px auto;
    display: flex;
    gap: 60px;
    padding: 0 40px;
}

.intro-left {
    flex: 1;
    background-color: #c9b9a5;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.intro-right p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.services-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-section > h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

.service-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-text p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #8b7355;
    margin-top: 20px;
    margin-bottom: 20px;
}

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

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

.service-image {
    flex: 1;
    background-color: #d4c4b0;
}

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

.form-section {
    background-color: #f4f1ed;
    padding: 80px 40px;
    margin-top: 100px;
}

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

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b7355;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8b7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #6f5c45;
}

.trust-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.trust-item {
    flex: 1;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.trust-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
    margin-top: 100px;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    margin-bottom: 8px;
    font-size: 14px;
}

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

.footer-col a:hover {
    color: #8b7355;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #95a5a6;
}

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

    .intro-section {
        flex-direction: column;
    }

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

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

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

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