* {
    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.6;
    color: #333;
    background-color: #fafafa;
}

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

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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 {
    flex: 1;
    margin: 0;
}

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

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

.btn-primary, .btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #84b9d1;
    color: #fff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px 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;
    min-height: 70px;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-disclosure {
    padding: 6px 12px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    margin: 0 20px;
}

.ad-label {
    font-size: 12px;
    color: #856404;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #84b9d1;
}

.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(132, 185, 209, 0.7), rgba(44, 44, 44, 0.5));
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.intro-section {
    padding: 80px 20px;
    background-color: #fff;
}

.intro-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.intro-card p {
    color: #666;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 20px;
    background-color: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 550px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #84b9d1;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #84b9d1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-inline {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 20px;
}

.cta-inline p {
    color: #666;
    font-size: 14px;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.testimonial-card {
    flex: 1;
    min-width: 260px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #84b9d1;
}

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

.testimonial-author {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 14px;
}

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

.form-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-card > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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: #84b9d1;
}

.btn-submit {
    padding: 16px;
    background-color: #84b9d1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff;
}

.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #ffd966;
    border-radius: 8px;
    padding: 30px;
}

.disclaimer-box h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 20px;
}

.disclaimer-box p {
    color: #856404;
    line-height: 1.8;
    font-size: 14px;
}

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

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    font-size: 14px;
}

.footer-email {
    color: #ccc;
    cursor: default;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

.thanks-card {
    background-color: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.thanks-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #84b9d1;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #6a9fb8;
}

.about-hero {
    padding: 80px 20px;
    background-color: #fff;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f4f8;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.services-detail-section {
    padding: 80px 20px;
    background-color: #fff;
}

.service-detail-card {
    background-color: #fafafa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.service-detail-card h3 {
    font-size: 28px;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.service-detail-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.price-highlight {
    font-size: 32px;
    font-weight: 700;
    color: #84b9d1;
    margin-top: 20px;
}

.contact-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.info-block p {
    color: #555;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #e8f4f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.legal-content {
    padding: 80px 20px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }

    .nav-disclosure {
        margin: 10px 0;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .intro-grid,
    .services-grid,
    .testimonials-grid,
    .footer-grid {
        flex-direction: column;
    }

    .form-card {
        padding: 30px 20px;
    }
}