* {
    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: #1a1a1a;
    background-color: #f5f7fa;
}

.ad-disclosure {
    background-color: #ffe5e5;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    color: #d32f2f;
    border-bottom: 1px solid: #ffcdd2;
    font-weight: 500;
}

.main-nav {
    background-color: #ffffff;
    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;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

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

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.card-content p {
    color: #6b7280;
    line-height: 1.7;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

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

.service-header h3 {
    font-size: 1.4rem;
    color: #111827;
    flex: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.select-service {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

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

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

.form-wrapper {
    flex: 1;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #111827;
}

.form-wrapper > p {
    color: #6b7280;
    margin-bottom: 30px;
}

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

#selected-service-display {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1e40af;
    display: none;
}

#selected-service-display.active {
    display: block;
}

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

.form-group label {
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-button {
    background-color: #10b981;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

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

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #111827;
}

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

.trust-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #374151;
    margin-bottom: 15px;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: #6b7280;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111827;
}

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

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

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

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #111827;
}

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

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111827;
}

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

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #111827;
}

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

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

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

.approach-text {
    flex: 1;
}

.approach-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.services-detailed {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 40px;
}

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

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #111827;
}

.service-price-tag {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-features li {
    color: #374151;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

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

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

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

.contact-details {
    flex: 1.5;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #111827;
}

.contact-block p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-note {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
}

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

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

.faq-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #111827;
}

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

.faq-item {
    flex: 1;
    min-width: 350px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #111827;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 15px;
}

#booking-confirmation {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
    font-weight: 600;
    color: #1e40af;
}

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

.thanks-info {
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111827;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: #4b5563;
    line-height: 1.7;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.3rem;
}

.main-footer {
    background-color: #111827;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #1f2937;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.disclaimer p {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: #4b5563;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #111827;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #374151;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 40px;
    color: #4b5563;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

    .hero-text h1 {
        font-size: 2rem;
    }

    .card-grid,
    .service-cards,
    .trust-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .form-container,
    .about-layout,
    .approach-content,
    .contact-layout,
    .service-detail-content {
        flex-direction: column;
    }

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

    .footer-container {
        flex-direction: column;
    }

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

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