* {
    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: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

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

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

.intro-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-section p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.value-card img {
    width: 100%;
    height: 250px;
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.value-card p {
    margin: 0 1.5rem 1.5rem;
    color: #34495e;
}

.services-highlight {
    padding: 6rem 2rem;
    background-color: #ecf0f1;
}

.services-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #34495e;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-item p {
    margin-bottom: 1.25rem;
    color: #34495e;
}

.service-item .price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #34495e;
    color: #ffffff;
}

.testimonial-section blockquote {
    font-size: 1.375rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-section cite {
    display: block;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.85;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.approach-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.approach-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #34495e;
}

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

.service-display {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    color: #155724;
}

.service-display.empty {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
}

.disclaimer {
    font-size: 0.875rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    padding: 5rem 2rem 3rem;
    background-color: #ecf0f1;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #34495e;
}

.about-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.principles-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.principles-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.principles-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.principle-block {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.principle-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.principle-block p {
    color: #34495e;
    line-height: 1.6;
}

.background-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.background-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.background-section p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: #34495e;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.commitment-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 0.5rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-cta {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.contact-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.info-block p {
    color: #34495e;
    line-height: 1.6;
}

.info-block .note {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    color: #7f8c8d;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-text {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 0.5rem;
    color: #155724;
}

.thanks-details strong {
    font-weight: 700;
}

.next-steps {
    margin-bottom: 3rem;
}

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

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.step h3 {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.step p {
    color: #34495e;
    font-size: 0.95rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2rem;
    border-radius: 6px;
    border: 2px solid #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-content .updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .approach-layout,
    .content-layout,
    .contact-layout {
        flex-direction: column;
    }

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

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