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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

.nav-main a:hover {
    color: #1a1a1a;
}

.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

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

.hero-overlay p {
    font-size: 22px;
    color: #f0f0f0;
    max-width: 600px;
}

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

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

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

.intro-section {
    background-color: #f9f9f9;
}

.intro-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.intro-card p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.problem-section {
    background-color: #ffffff;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: #f5f5f5;
    padding: 40px 35px;
    border-radius: 6px;
    border-left: 4px solid #8b7355;
}

.problem-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

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

.insight-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.insight-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    object-fit: cover;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.insight-text p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.9;
}

.trust-section {
    background-color: #ffffff;
}

.section-title {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f8f8;
    padding: 40px 35px;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 17px;
    color: #2c2c2c;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

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

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

.service-price {
    font-size: 20px;
    color: #8b7355;
    font-weight: 700;
}

.benefits-section {
    background-color: #ffffff;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 6px;
}

.benefit-card h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.cta-section {
    background-color: #8b7355;
}

.cta-card-main {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.cta-card-main h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.cta-card-main > p {
    font-size: 18px;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 40px;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1a1a1a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #f9f9f9;
}

.disclaimer-card {
    background-color: #fff9e6;
    padding: 30px;
    border-left: 4px solid #d4a574;
    border-radius: 5px;
}

.disclaimer-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.footer-main {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 40px 30px;
}

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

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

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

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

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

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

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

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

.page-hero {
    background-color: #f4f4f4;
    padding: 80px 40px 60px;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #555;
}

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

.about-story-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 20px;
}

.values-section {
    margin-bottom: 80px;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 6px;
}

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

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

.process-section {
    margin-bottom: 80px;
}

.process-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 220px;
    background-color: #f4f4f4;
    padding: 35px 25px;
    border-radius: 6px;
    text-align: center;
}

.process-number {
    font-size: 36px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.process-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.team-section {
    margin-bottom: 60px;
}

.team-intro {
    font-size: 18px;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.team-image-section {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.commitment-card {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
}

.commitment-card h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.commitment-card p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 20px;
}

.services-detailed {
    background-color: #ffffff;
}

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

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

.service-detail-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    object-fit: cover;
}

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

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

.service-detail-price {
    font-size: 24px;
    color: #8b7355;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

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

.service-cta-section {
    background-color: #f4f4f4;
}

.cta-box {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.cta-box h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #333333;
}

.contact-section {
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: stretch;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-image-card {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 500px;
}

.contact-additional {
    margin-bottom: 60px;
}

.contact-additional h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

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

.method-card {
    flex: 1;
    min-width: 280px;
    background-color: #f4f4f4;
    padding: 35px;
    border-radius: 6px;
}

.method-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.method-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.method-card a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 600;
}

.method-card a:hover {
    text-decoration: underline;
}

.directions-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.directions-card h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.directions-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.thanks-section {
    background-color: #f9f9f9;
    min-height: 70vh;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    flex: 1;
}

.thanks-contact {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-contact p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-secondary {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #9a8164;
}

.legal-page {
    background-color: #ffffff;
}

.legal-intro {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

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

.legal-page h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

.legal-page li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 10px;
}

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

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

.cookie-table {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #8b7355;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

    .hero-overlay p {
        font-size: 18px;
    }

    .container,
    .container-wide,
    .container-narrow {
        padding: 50px 25px;
    }

    .card-grid,
    .testimonial-grid,
    .benefits-grid,
    .values-grid,
    .process-cards,
    .contact-method-cards {
        flex-direction: column;
    }

    .insight-content,
    .about-story-card,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

    .service-reverse {
        flex-direction: column;
    }

    .insight-image,
    .about-image,
    .service-detail-image {
        height: 300px;
    }

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

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