* {
    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: #2c3e50;
    background-color: #f8f9fa;
}

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hero {
    background-color: #ffffff;
    padding: 0;
    margin-bottom: 40px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a252f;
}

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

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

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

.intro-story {
    background-color: #ffffff;
    margin-bottom: 40px;
}

.story-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.story-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.story-card p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.problem-section {
    background-color: #ffffff;
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.problem-card {
    flex: 1 1 300px;
    max-width: 360px;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.problem-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.insight-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.insight-content img {
    flex: 1 1 400px;
    max-width: 550px;
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #dee2e6;
}

.insight-text {
    flex: 1 1 500px;
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a252f;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.services-preview {
    background-color: #ffffff;
    padding: 60px 0;
    margin-bottom: 40px;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

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

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0 20px 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.testimonials {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-bottom: 40px;
}

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

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

.testimonial-card {
    flex: 1 1 300px;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

.form-section {
    background-color: #ffffff;
    padding: 60px 0;
    margin-bottom: 40px;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 32px;
    font-size: 17px;
}

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

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

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

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

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

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

#selectedServiceDisplay {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    display: none;
}

#selectedServiceDisplay.active {
    display: block;
}

.disclaimer-section {
    background-color: #fff8e1;
    padding: 40px 0;
    margin-bottom: 40px;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 24px 32px;
}

.disclaimer-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1 1 220px;
}

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

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

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

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

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

.cookie-content p {
    flex: 1 1 500px;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #3498db;
}

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

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

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

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

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

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

.page-hero {
    background-color: #3498db;
    color: #ffffff;
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 20px;
}

.about-content {
    background-color: #ffffff;
    padding-bottom: 40px;
}

.about-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.about-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.about-card p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.about-image-section {
    margin: 40px 0;
    text-align: center;
}

.about-image-section img {
    max-width: 100%;
    border-radius: 12px;
    background-color: #dee2e6;
    object-fit: cover;
}

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

.value-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.services-detailed {
    background-color: #ffffff;
    padding-bottom: 40px;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
}

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

.service-detail-image {
    flex: 1 1 350px;
    max-width: 450px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    background-color: #dee2e6;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-top: 20px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.cta-section {
    background-color: #3498db;
    padding: 60px 0;
}

.cta-card {
    text-align: center;
}

.cta-card h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 48px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.contact-section {
    background-color: #ffffff;
    padding-bottom: 40px;
}

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

.contact-info-card {
    flex: 1 1 400px;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a252f;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-map-card {
    flex: 1 1 400px;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
}

.contact-map-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-map-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page {
    background-color: #ffffff;
    padding-bottom: 40px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a252f;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.thanks-section {
    background-color: #ffffff;
    padding: 80px 0;
    min-height: 50vh;
}

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

.thanks-card h1 {
    font-size: 36px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

#serviceConfirmation {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 32px;
    font-size: 17px;
    color: #0c5460;
}

.btn-back {
    display: inline-block;
    padding: 14px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

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

    .hero-image {
        height: 300px;
    }

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

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

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