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

:root {
    --primary-color: #C17747;
    --secondary-color: #6B4423;
    --accent-color: #F5F1ED;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
    --success-color: #4A7C59;
    --error-color: #C44536;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: var(--secondary-color);
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.navigation {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--accent-color);
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    background-color: var(--accent-color);
    overflow: hidden;
}

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

.intro-section {
    background-color: var(--accent-color);
    padding: 80px 40px;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 27px);
    min-width: 320px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.service-info {
    padding: 32px 24px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: var(--primary-color);
}

.btn-select.selected {
    background-color: var(--success-color);
}

.form-section {
    background-color: var(--accent-color);
    padding: 100px 40px;
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.form-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    padding: 16px 20px;
    background-color: var(--white);
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
}

.form-right {
    flex: 1;
}

.quote-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--accent-color);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.btn-submit:disabled {
    background-color: var(--border-color);
    cursor: not-allowed;
}

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

.why-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.why-item {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    background-color: var(--accent-color);
    border-radius: 8px;
}

.why-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-section p {
    color: #CCCCCC;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.disclaimer-text {
    font-size: 12px;
    color: #999999;
    line-height: 1.5;
}

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

.page-header {
    background-color: var(--accent-color);
    padding: 80px 40px 60px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

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

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-dark);
}

.content-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-info {
    background-color: var(--accent-color);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 20px;
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

.info-value {
    color: var(--text-light);
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--accent-color);
    border-radius: 12px;
}

.thanks-icon {
    font-size: 72px;
    color: var(--success-color);
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-info {
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.thanks-info strong {
    color: var(--text-dark);
}

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

    .hero-left {
        padding: 40px 20px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        width: 100%;
    }

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

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

    .page-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }
}