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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e1e8ed;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    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;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-cards {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.intro-cards h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.info-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.service-header h3 {
    font-size: 22px;
    color: var(--primary-color);
    flex: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

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

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

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-duration {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    font-style: italic;
}

.select-service-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

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

.benefits-section {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-item {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 280px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.benefit-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

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

.trust-section {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 35px;
}

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

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

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.disclaimer {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 25px;
    z-index: 2000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-color);
    font-size: 15px;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.cookie-btn.accept {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: var(--text-color);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

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

.about-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.about-card h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.approach-list {
    list-style: none;
    margin-top: 20px;
}

.approach-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.approach-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.values-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

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

.value-card {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.story-section {
    background-color: var(--light-bg);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.story-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-section p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.cta-card-centered {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5dade2 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.cta-card-centered h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-card-centered p {
    font-size: 17px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-card-centered .cta-button {
    background-color: var(--white);
    color: var(--secondary-color);
}

.cta-card-centered .cta-button:hover {
    background-color: var(--light-bg);
}

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

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

.process-section {
    margin-top: 80px;
    padding: 60px 0;
    background-color: var(--light-bg);
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 12px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.form-section {
    margin-top: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.contact-page {
    padding: 80px 20px;
}

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.contact-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-note {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    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: var(--white);
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.additional-info {
    max-width: 800px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.additional-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.additional-info a {
    color: var(--secondary-color);
    text-decoration: underline;
    cursor: pointer;
}

.additional-info a:hover {
    color: #2980b9;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 60vh;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.selected-service-info {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service {
    color: var(--text-color);
    margin: 0;
}

.next-steps {
    text-align: left;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.next-steps h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.next-steps ol {
    padding-left: 20px;
}

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

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.secondary-btn {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.secondary-btn:hover {
    background-color: #e0e0e0;
}

.contact-reminder {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.contact-reminder p {
    color: #666;
    margin-bottom: 10px;
}

.email-display {
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.last-updated {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 17px;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

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

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

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

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

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

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

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .benefits-grid {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

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

    .about-grid {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .thanks-card {
        padding: 40px 25px;
    }

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

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}