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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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;
}

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

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-split {
    background-color: #f8f9fa;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 600px;
    gap: 60px;
}

.hero-text {
    flex: 1;
    padding: 60px 0 60px 60px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a252f;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    background-color: #e1e8ed;
}

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

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.challenge-split {
    background-color: #f8f9fa;
    padding: 100px 0;
}

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

.split-layout-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-image-left {
    flex: 1;
    background-color: #d5dce2;
}

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

.split-content-right {
    flex: 1;
}

.split-content-right h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.split-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.split-image-right {
    flex: 1;
    background-color: #d5dce2;
}

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

.split-content-left {
    flex: 1;
}

.split-content-left h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.split-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.approach-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.approach-cards {
    display: flex;
    gap: 40px;
}

.approach-card {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

.approach-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-main {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-main h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-intro {
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-image {
    flex: 1;
    background-color: #d5dce2;
}

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

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

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

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

.results-split {
    padding: 100px 0;
    background-color: #ffffff;
}

.results-list {
    list-style: none;
    margin-bottom: 30px;
}

.results-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
    color: #5a6c7d;
}

.results-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.disclaimer-inline {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 3px solid #3498db;
}

.cta-section {
    padding: 100px 0;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

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

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.footer-main {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #95a5a6;
}

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

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

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie-accept {
    background-color: #3498db;
    color: #ffffff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    padding: 10px 24px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #7f8c8d;
    cursor: pointer;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    margin-bottom: 25px;
    color: #1a252f;
}

.selected-service-display {
    font-weight: 600;
    color: #3498db;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

form input[type="text"],
form input[type="email"],
form textarea,
form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: #3498db;
}

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

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

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 0 60px;
}

.page-hero h1 {
    font-size: 3rem;
    color: #1a252f;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-top: 20px;
}

.about-intro-split {
    padding: 100px 0;
    background-color: #ffffff;
}

.philosophy-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a252f;
}

.philosophy-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.expertise-cards {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.expertise-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.expertise-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.numbers-section {
    padding: 100px 0;
    background-color: #2c3e50;
}

.numbers-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.number-item {
    text-align: center;
    color: #ffffff;
}

.number-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.number-label {
    font-size: 1.1rem;
}

.approach-detail {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a252f;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-detail {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-color: #d5dce2;
}

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

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

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

.service-detail-content h3 {
    font-size: 1.25rem;
    margin: 25px 0 15px;
    color: #1a252f;
}

.service-detail-content ul {
    margin-bottom: 25px;
}

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

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a252f;
}

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

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-main {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1a252f;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.no-link {
    color: #5a6c7d;
    user-select: text;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 3px solid #3498db;
}

.contact-note p {
    font-size: 0.95rem;
    color: #5a6c7d;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-form-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.map-placeholder {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-info {
    text-align: center;
}

.map-info h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #1a252f;
}

.map-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
}

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

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.service-confirmation {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #3498db;
}

.thanks-next {
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a252f;
}

.thanks-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    list-style-position: inside;
}

.thanks-steps li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a6c7d;
}

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

.legal-page {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-page h3 {
    font-size: 1.35rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a252f;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

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

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

#manage-cookies-btn {
    margin: 30px 0;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-main {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

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