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

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

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

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

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

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

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

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

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

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

.main-header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b7355;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f0ebe6;
    border-radius: 3px;
}

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

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

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

.hero-section {
    margin-top: 0;
}

.hero-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.85), rgba(44, 44, 44, 0.7));
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    max-width: 600px;
    line-height: 1.5;
}

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

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

.intro-card {
    flex: 1;
    min-width: 300px;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #8b7355;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.intro-card-highlight {
    flex: 1;
    min-width: 300px;
    background-color: #8b7355;
    color: #ffffff;
    padding: 40px;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

.intro-card-highlight p {
    font-size: 20px;
    line-height: 1.6;
}

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

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 15px;
}

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

.btn-select:hover {
    background-color: #6f5a43;
}

.cta-inline {
    padding: 60px 0;
    background-color: #ffffff;
}

.cta-card-wide {
    background: linear-gradient(135deg, #8b7355, #6f5a43);
    color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-card-wide h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card-wide p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #8b7355;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-cta:hover {
    background-color: #f0ebe6;
}

.values-section {
    padding: 80px 0;
    background-color: #f0ebe6;
}

.values-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #8b7355;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f9f7f4;
    padding: 50px;
    border-radius: 8px;
}

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

.form-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

.btn-submit {
    padding: 15px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 50px 0;
    background-color: #f0ebe6;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #8b7355;
}

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

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

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

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

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.thanks-box {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-box h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #8b7355;
}

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

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-home:hover {
    background-color: #6f5a43;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b7355, #6f5a43);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.services-hero {
    padding: 80px 0;
    background-color: #f0ebe6;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.services-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-hero {
    padding: 80px 0;
    background-color: #f0ebe6;
    text-align: center;
}

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

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

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

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

.info-card {
    flex: 1;
    min-width: 250px;
    background-color: #f9f7f4;
    padding: 35px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #8b7355;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #8b7355;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-text p {
        font-size: 16px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cta-card-wide {
        padding: 40px 25px;
    }

    .cta-card-wide h2 {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }
}