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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

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

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

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

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

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

.btn-accept {
    background-color: #27ae60;
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-notice {
    background-color: #f8d7da;
    color: #721c24;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

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

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

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

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

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

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

.hero-overlay h1 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    max-width: 800px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 22px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-primary {
    background-color: #8B7355;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #6F5B45;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

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

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 20px;
    color: #666;
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 20px;
}

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

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

.benefits-section {
    padding: 80px 0;
    background-color: white;
}

.benefits-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #8B7355;
    border-radius: 4px;
}

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

.benefit-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B7355 0%, #6F5B45 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #8B7355;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #6F5B45;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

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

.disclaimer-box p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #8B7355;
}

.footer-column p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-box h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.thanks-box .service-name {
    font-weight: 700;
    color: #8B7355;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    background-color: #2c3e50;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.content-section {
    padding: 80px 0;
    background-color: white;
}

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

.content-wrapper h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-wrapper li {
    font-size: 17px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.service-item {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #8B7355;
}

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

.service-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.service-item .service-price {
    font-size: 26px;
    font-weight: 700;
    color: #8B7355;
    margin-top: 15px;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.info-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 16px;
}

.info-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .service-card {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }
}
