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

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 33px;
    z-index: 999;
}

.nav-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: 600;
    color: #8b4513;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #8b4513;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.hero-image {
    flex: 1;
    background-color: #d4a574;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #6d3410;
}

.intro-text {
    padding: 90px 40px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #444;
    line-height: 1.8;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 0;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 70px 60px;
}

.split-image {
    flex: 1;
    background-color: #c9a882;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.text-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s;
}

.text-link:hover {
    color: #6d3410;
}

.services-preview {
    background-color: #f5f5f5;
}

.service-cards {
    padding: 90px 40px;
    background-color: #ffffff;
}

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

.service-cards h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #666;
    line-height: 1.6;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #8b4513;
    margin: 20px 25px 25px;
}

.process-section {
    background-color: #fafafa;
}

.form-section {
    padding: 90px 40px;
    background-color: #f5f5f5;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

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

.main-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-button:hover {
    background-color: #6d3410;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #d4a574;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

.page-header {
    background-color: #f5f5f5;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-header p {
    font-size: 19px;
    color: #666;
}

.about-intro {
    background-color: #ffffff;
}

.about-values {
    padding: 90px 40px;
    background-color: #fafafa;
}

.about-values h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #8b4513;
    font-weight: 600;
}

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

.about-expertise {
    background-color: #f5f5f5;
}

.about-commitment {
    padding: 90px 40px;
    background-color: #ffffff;
}

.about-commitment h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.about-commitment p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

.services-detailed {
    padding: 60px 40px;
}

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

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-image {
    flex: 1;
    background-color: #c9a882;
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.service-detail h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.service-features {
    margin: 30px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: 700;
    font-size: 18px;
}

.service-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #8b4513;
}

.price-label {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.price-value {
    font-size: 28px;
    color: #8b4513;
    font-weight: 700;
}

.cta-section {
    padding: 80px 40px;
    background-color: #8b4513;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #8b4513;
}

.cta-section .cta-button:hover {
    background-color: #f5f5f5;
}

.contact-section {
    padding: 60px 40px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-image {
    flex: 1;
    background-color: #c9a882;
    overflow: hidden;
    border-radius: 8px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #8b4513;
    font-weight: 600;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.location-section {
    padding: 80px 40px;
    background-color: #fafafa;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
    max-width: 900px;
}

.thanks-section {
    padding: 90px 40px;
    min-height: 500px;
}

.thanks-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-image {
    flex: 1;
    background-color: #c9a882;
    overflow: hidden;
    border-radius: 8px;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.thanks-service {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.legal-page {
    padding: 60px 40px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 10px;
    color: #555;
}

.legal-page a {
    color: #8b4513;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .split-layout.reverse,
    .cards-grid,
    .values-grid,
    .service-detail,
    .service-detail.reverse,
    .contact-layout,
    .thanks-section .container {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}