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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    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: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #1a2332;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #cbd5e0;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #3498db;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.intro-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.services-cards {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.services-cards h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.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 16px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.card-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    color: #cbd5e0;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

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

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

.trust-card p {
    font-size: 15px;
    color: #5a6c7d;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    line-height: 1.8;
}

.main-footer {
    background-color: #1a2332;
    color: #cbd5e0;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #8b95a3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a2332;
    padding: 24px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    color: #cbd5e0;
    font-size: 15px;
    flex: 1;
}

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

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

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.page-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.about-content {
    padding: 80px 20px;
}

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

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

.content-image {
    flex: 1;
    min-width: 400px;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.content-text {
    flex: 1;
}

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

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

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

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 48px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

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

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

.mission-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.mission-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-price-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: #e8f4fd;
    color: #3498db;
    font-size: 20px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

.service-detail-content ul li {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.select-service-btn {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.services-cta {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 36px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

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

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

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

.contact-email {
    font-weight: 600;
    color: #2c3e50;
}

.hours-note {
    margin-top: 12px;
    font-size: 13px;
    color: #8b95a3;
}

.contact-message {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-message h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.location-info {
    max-width: 900px;
    margin: 0 auto;
}

.location-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 32px;
    text-align: center;
}

.location-details {
    display: flex;
    gap: 40px;
}

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.location-text p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.7;
}

.location-text ul {
    list-style: none;
    padding-left: 0;
}

.location-text ul li {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.location-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.location-note {
    font-size: 13px;
    color: #8b95a3;
    margin-top: 8px;
}

.contact-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    text-align: center;
    color: #ffffff;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.service-confirmation {
    margin-bottom: 40px;
}

.selected-service-info {
    padding: 20px;
    background-color: #e8f4fd;
    border-left: 4px solid #3498db;
    border-radius: 6px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

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

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

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.legal-page {
    padding: 60px 20px 80px;
}

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

.legal-content h1 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

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

.legal-content ul li {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #8b95a3;
    font-size: 14px;
}

.url-text {
    color: #5a6c7d;
    word-break: break-all;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 20px;
    }

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

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

    .content-block,
    .content-block.reverse {
        flex-direction: column;
    }

    .content-image {
        min-width: 100%;
    }

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

    .service-detail-content {
        padding: 32px;
    }

    .service-detail-image {
        min-height: 300px;
        width: 100%;
    }

    .location-details {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 28px;
    }

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

    .service-card {
        width: 100%;
    }

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

    .contact-form {
        padding: 28px;
    }

    .trust-cards {
        flex-direction: column;
    }

    .thanks-content h1 {
        font-size: 28px;
    }
}