* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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 {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #81c3e8;
    text-decoration: underline;
}

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

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

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

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

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.split-left, .split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f4f1ec;
}

.split-right {
    position: relative;
    overflow: hidden;
    background-color: #d4c5b0;
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    background: #8b6f47;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-statement {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.intro-statement h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-statement p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-overview {
    background: #fafafa;
}

.service-item-split {
    display: flex;
    min-height: 500px;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #c8b89d;
}

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

.service-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

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

.service-info p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #5a6c7d;
    line-height: 1.7;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 24px;
}

.btn-select-service {
    background: #8b6f47;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #6e5838;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 20px;
    background: #f4f1ec;
}

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

.form-section > div > p {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    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: #8b6f47;
}

.btn-submit {
    width: 100%;
    background: #8b6f47;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #8b6f47;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #34495e;
    font-style: italic;
}

.testimonial-card .author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

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

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

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

.footer-col h4 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 18px;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

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

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

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

.thanks-box p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.thanks-box .selected-service {
    background: #f4f1ec;
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
    font-weight: 600;
    color: #8b6f47;
}

.thanks-box a {
    display: inline-block;
    margin-top: 24px;
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #8b6f47;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-box a:hover {
    background: #8b6f47;
    color: white;
}

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 16px;
    margin-left: 24px;
    color: #5a6c7d;
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-page {
    padding: 60px 20px;
}

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

.contact-info {
    flex: 1;
}

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

.contact-info p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.info-block p {
    margin-bottom: 8px;
    color: #5a6c7d;
}

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

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero {
    padding: 80px 20px;
    background: #f4f1ec;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 19px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content-split {
    display: flex;
    min-height: 500px;
}

.about-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #c8b89d;
}

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

.services-page-hero {
    padding: 80px 20px;
    background: #f4f1ec;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.services-page-hero p {
    font-size: 19px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        gap: 16px;
        font-size: 14px;
    }

    .hero-split {
        flex-direction: column;
    }

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

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

    .service-item-split,
    .service-item-split.reverse {
        flex-direction: column;
    }

    .service-info {
        padding: 40px 20px;
    }

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

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

    .contact-split {
        flex-direction: column;
    }

    .about-content-split {
        flex-direction: column;
    }

    .about-text {
        padding: 40px 20px;
    }

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