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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #636e72;
}

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #8b4513;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #d4a574;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #c89961;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

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

.intro-image {
    flex: 1;
    background-color: #e8dcc8;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

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

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

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

.services-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.service-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #8b4513;
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
    background-color: #e8dcc8;
}

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

.select-service {
    padding: 12px 30px;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #6f3609;
}

.testimonial-section {
    background-color: #f5f5f0;
    padding: 80px 0;
}

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

.testimonial-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    color: #8b4513;
    font-weight: bold;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 18px;
    color: #555;
}

.cta-form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation-form input,
.consultation-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #7f8c8d;
}

.form-note span {
    font-weight: bold;
    color: #8b4513;
}

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

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4a574;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-container .service-selected {
    font-size: 20px;
    font-weight: bold;
    color: #8b4513;
    margin: 30px 0;
}

.contact-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #8b4513;
}

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

.services-page {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.service-item .price {
    font-size: 28px;
    font-weight: bold;
    color: #8b4513;
}

.about-page {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.about-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-content h2 {
    font-size: 32px;
    margin: 30px 0 20px;
    color: #8b4513;
}

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

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.legal-page h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: #8b4513;
}

.legal-page h3 {
    font-size: 22px;
    margin: 20px 0 10px;
    color: #2c3e50;
}

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

.legal-page ul {
    margin: 15px 0 20px 30px;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .service-split,
    .cta-split {
        flex-direction: column;
    }

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

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

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

    .footer-section {
        flex: 1 1 45%;
    }
}

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .intro-content h2,
    .services-header h2 {
        font-size: 30px;
    }

    .footer-section {
        flex: 1 1 100%;
    }
}