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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #8b4513;
}

.header-right {
    display: flex;
    gap: 30px;
}

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

.header-right a:hover {
    color: #8b4513;
}

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

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
    max-width: 540px;
}

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

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

.cta-primary {
    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;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    padding: 80px 50px;
    background-color: #ffffff;
    gap: 60px;
}

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

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

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

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

.intro-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.services-grid {
    padding: 90px 50px;
    background-color: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #6c757d;
    max-width: 680px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e9ecef;
}

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

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    flex-grow: 1;
}

.price {
    padding: 15px 25px;
    font-size: 26px;
    font-weight: 700;
    color: #8b4513;
    border-top: 1px solid #e9ecef;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 0;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-split {
    display: flex;
    padding: 80px 50px;
    background-color: #ffffff;
    gap: 60px;
}

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

.form-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-info p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.service-selection-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-selection-notice.selected {
    background-color: #d4edda;
    color: #155724;
}

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

form input,
form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.cta-submit {
    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;
}

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

.cta-submit:disabled {
    background-color: #ced4da;
    cursor: not-allowed;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 50px;
    background-color: #2c3e50;
    color: #ecf0f1;
    gap: 50px;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #8b4513;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #6d3410;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

.page-hero {
    padding: 80px 50px;
    background-color: #f5f1ed;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 19px;
    color: #6c757d;
}

.about-split {
    display: flex;
    padding: 80px 50px;
    background-color: #ffffff;
    gap: 60px;
}

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

.about-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.values-section {
    padding: 80px 50px;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

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

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

.value-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.team-split {
    display: flex;
    padding: 80px 50px;
    background-color: #ffffff;
    gap: 60px;
}

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

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

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

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

.team-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 50px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    max-width: 1100px;
    margin: 0 auto;
    text-align: justify;
}

.service-detail-split {
    display: flex;
    padding: 70px 50px;
    background-color: #ffffff;
    gap: 60px;
    border-bottom: 1px solid #e9ecef;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

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

.price-highlight {
    font-size: 30px;
    font-weight: 700;
    color: #8b4513;
    margin-top: 25px;
}

.contact-split {
    display: flex;
    padding: 80px 50px;
    background-color: #ffffff;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.thanks-container {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.6;
}

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

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

.legal-update {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-style: italic;
    color: #6c757d;
}

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

    .header-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}