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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4756f;
}

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-section {
    display: flex;
    min-height: 520px;
    margin-bottom: 60px;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 30px;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #d4756f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-cards {
    padding: 50px 0;
    background-color: #fff;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 35px 28px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.intro-card h3 {
    font-size: 1.35rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.intro-card p {
    color: #5a6c7d;
    font-size: 0.95rem;
}

.services-section {
    padding: 70px 0;
    background-color: #f9f9f9;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e8ddd8;
    overflow: hidden;
}

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

.service-details {
    padding: 28px;
}

.service-details h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-details p {
    color: #5a6c7d;
    font-size: 0.93rem;
    margin-bottom: 18px;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4756f;
    margin-bottom: 18px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #1a252f;
}

.form-section {
    padding: 70px 0;
    background-color: #fff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f5f3;
    border-radius: 10px;
}

.form-wrapper h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #d4756f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 60px 0;
    background-color: #2c3e50;
}

.trust-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.trust-card h3 {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 20px;
}

.trust-card p {
    color: #d4dae0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.main-footer {
    background-color: #1a252f;
    color: #d4dae0;
    padding: 50px 0 20px;
}

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

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

.footer-section h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 0.93rem;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    border-top: 1px solid #2c3e50;
    font-size: 0.82rem;
    color: #8a9199;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-size: 0.88rem;
    color: #8a9199;
}

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

.cookie-content p {
    color: #fff;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #d4756f;
    color: #fff;
}

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

.btn-reject {
    background-color: #5a6c7d;
    color: #fff;
}

.btn-reject:hover {
    background-color: #4a5a6a;
}

.page-header {
    padding: 60px 0 40px;
    background-color: #f9f5f3;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.about-content {
    padding: 60px 0;
}

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

.content-card.reverse {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
    background-color: #e8ddd8;
    border-radius: 10px;
    overflow: hidden;
}

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

.card-text {
    flex: 1;
}

.card-text h2 {
    font-size: 1.9rem;
    color: #2c3e50;
    margin-bottom: 18px;
}

.card-text p {
    color: #5a6c7d;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-section {
    padding: 70px 0;
    background-color: #f9f9f9;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.4rem;
    color: #d4756f;
    margin-bottom: 12px;
}

.value-card p {
    color: #5a6c7d;
    font-size: 0.98rem;
    line-height: 1.7;
}

.services-detail {
    padding: 60px 0;
}

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

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 18px;
}

.service-detail-content p {
    color: #5a6c7d;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #d4756f;
    margin: 25px 0;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.contact-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-card {
    flex: 1;
}

.contact-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.info-item h3 {
    font-size: 1.2rem;
    color: #d4756f;
    margin-bottom: 10px;
}

.info-item p {
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-image-card {
    flex: 1;
    background-color: #e8ddd8;
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

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

.directions-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.directions-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.directions-section p {
    color: #5a6c7d;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 800px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9f5f3;
}

.thanks-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: #d4756f;
    color: #fff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-card h1 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-card p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-highlight {
    padding: 20px;
    background-color: #f9f5f3;
    border-radius: 6px;
    margin: 20px 0;
}

.service-highlight strong {
    color: #d4756f;
}

.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 18px;
    margin-top: 35px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 25px;
}

.legal-text p {
    color: #5a6c7d;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-text ul li {
    color: #5a6c7d;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .card-grid,
    .services-grid,
    .values-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .content-card,
    .content-card.reverse,
    .service-detail-card,
    .service-detail-card.reverse,
    .contact-grid {
        flex-direction: column;
    }

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