/* Reset and Base Styles */
* {
    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;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a5e;
}

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

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d7a5e;
}

/* Hero Section */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.card-intro h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

.card-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

/* Services Highlight */
.services-highlight {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.card-content {
    padding: 24px;
}

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

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

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2d7a5e;
    margin: 16px 0;
}

.cta-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #2d7a5e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-select:hover {
    background-color: #246b4f;
    transform: scale(1.02);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

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

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

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

.form-group input,
.form-group select {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 32px;
    background-color: #2d7a5e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #246b4f;
    transform: scale(1.02);
}

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background-color: #2d7a5e;
    color: #ffffff;
    text-align: center;
}

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

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.card-image-wrapper {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

.card-text {
    flex: 1;
}

.card-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

/* Stats Section */
.stats-section {
    margin-top: 60px;
    padding: 60px 0;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.stats-section h2 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    width: calc(25% - 23px);
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d7a5e;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

/* Values Section */
.values-section {
    margin-top: 60px;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #2d7a5e;
}

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

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

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.service-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a5e;
    font-weight: 700;
    font-size: 18px;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a5e;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.included-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-info-card {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    color: #2d7a5e;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.note-small {
    font-size: 14px;
    color: #7a8a9a;
    font-style: italic;
}

.map-placeholder {
    flex: 1;
    position: relative;
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: #ffffff;
}

.map-overlay p {
    font-size: 16px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.faq-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 12px;
}

.faq-card h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

/* Thanks Section */
.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.thanks-card h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
}

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

.service-confirmation {
    background-color: #d4edda;
    color: #155724;
    padding: 16px 24px;
    border-radius: 8px;
    margin: 24px 0;
    font-size: 16px;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    position: relative;
    padding-top: 60px;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 32px;
    font-size: 48px;
    font-weight: 700;
    color: #2d7a5e;
    opacity: 0.3;
}

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

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

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

.btn-primary {
    padding: 14px 32px;
    background-color: #2d7a5e;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: #2d7a5e;
    border: 2px solid #2d7a5e;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d7a5e;
    color: #ffffff;
}

.contact-reminder {
    margin-top: 40px;
    padding: 24px;
    background-color: #fff3cd;
    border-radius: 8px;
}

.contact-reminder p {
    margin-bottom: 8px;
}

/* Legal Page */
.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: #7a8a9a;
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #5a6c7d;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: #b8c5d6;
    display: block;
    margin-bottom: 8px;
}

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

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #b8c5d6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    display: none;
}

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

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

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

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

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

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

.cookie-btn.accept {
    background-color: #2d7a5e;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

    .main-nav {
        gap: 20px;
    }

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

    .hero-text p {
        font-size: 16px;
    }

    .service-card {
        width: 100%;
    }

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

    .stat-card {
        width: calc(50% - 15px);
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 400px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-card {
        width: 100%;
    }
}