* {
    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;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept {
    background: #6f4e37;
    color: #fff;
}

.btn-accept:hover {
    background: #8b6347;
}

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

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

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

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #6f4e37;
}

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

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

.nav a:hover {
    color: #6f4e37;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay .container {
    text-align: center;
    color: #fff;
}

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

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    background: #6f4e37;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.intro-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #6f4e37;
}

.intro-card p {
    color: #7f8c8d;
}

.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #6f4e37;
}

.service-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background: #6f4e37;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #8b6347;
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #6f4e37;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #8b6347;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.feature-image {
    flex: 1;
    min-width: 400px;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    border-radius: 10px;
}

.feature-text {
    flex: 1;
    min-width: 400px;
}

.feature-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6f4e37;
    font-weight: bold;
    font-size: 18px;
}

.link-arrow {
    color: #6f4e37;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.link-arrow:hover {
    color: #8b6347;
}

.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #6f4e37;
}

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.thanks-container {
    padding: 100px 0;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #6f4e37;
}

.thanks-container p {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-back {
    display: inline-block;
    background: #6f4e37;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #8b6347;
}

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

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

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

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

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

    .features-layout {
        flex-direction: column;
    }

    .feature-image {
        min-width: 100%;
    }

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