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

.ad-disclosure {
    background-color: #ecf0f1;
    color: #7f8c8d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #bdc3c7;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a252f;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #576574;
    max-width: 580px;
}

.hero-image {
    flex: 1;
    background-color: #dfe4ea;
    overflow: hidden;
}

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

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

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

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

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

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #ffffff;
    align-items: flex-start;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a252f;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #576574;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 35px 30px;
    border-left: 4px solid #3498db;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #576574;
    line-height: 1.5;
}

.story-section {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    background-color: #f8f9fa;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a252f;
}

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

.story-image {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-grid {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-grid h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 24px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #dfe4ea;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a252f;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #576574;
    flex-grow: 1;
}

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

.service-card .select-service {
    margin: 0 25px 25px;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.selected-service-display {
    font-size: 16px;
    color: #576574;
    margin-bottom: 35px;
}

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

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

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

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

.about-preview {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    background-color: #ffffff;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #dfe4ea;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #576574;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #2980b9;
}

.link-arrow::after {
    content: " →";
}

.testimonials {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.testimonials h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    max-width: 800px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 60px;
    box-shadow: 0 -4px 15px 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;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    background-color: #f8f9fa;
    padding: 100px 60px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.about-story {
    padding: 80px 60px;
    background-color: #ffffff;
}

.story-split {
    display: flex;
    gap: 70px;
    align-items: center;
}

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a252f;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #576574;
}

.story-visual {
    flex: 1;
    background-color: #dfe4ea;
}

.story-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

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

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #576574;
}

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

.team-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: #dfe4ea;
}

.team-member h3 {
    font-size: 24px;
    margin: 25px 25px 8px;
    color: #1a252f;
}

.team-member .role {
    font-size: 14px;
    font-weight: 600;
    color: #3498db;
    margin: 0 25px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 25px;
    color: #576574;
}

.approach-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
}

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

.approach-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    font-size: 56px;
    font-weight: 700;
    color: #e8ecef;
    min-width: 80px;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #576574;
}

.cta-section {
    padding: 80px 60px;
    background-color: #3498db;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-primary:hover {
    background-color: #ecf0f1;
}

.services-detail {
    padding: 80px 60px;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #576574;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #576574;
    margin-bottom: 8px;
}

.service-price-box {
    background-color: #f8f9fa;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

.price-unit {
    font-size: 16px;
    color: #576574;
}

.service-detail-image {
    flex: 0.8;
    background-color: #dfe4ea;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.faq-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a252f;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px 35px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #576574;
}

.contact-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-info-section {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #1a252f;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #576574;
}

.contact-map {
    flex: 1;
    background-color: #dfe4ea;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-additional h3 {
    font-size: 22px;
    margin: 35px 0 15px;
    color: #2c3e50;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: #576574;
    margin-bottom: 15px;
}

.contact-additional a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-additional a:hover {
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
    text-align: center;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #576574;
    margin-bottom: 10px;
}

.legal-updated {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e8ecef;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.thanks-section {
    display: flex;
    min-height: 70vh;
    gap: 60px;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.thanks-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #576574;
}

.thanks-info {
    background-color: #e8f4f8;
    padding: 20px 25px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next-steps ul {
    list-style-position: inside;
    margin-bottom: 40px;
}

.thanks-next-steps ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #576574;
    margin-bottom: 12px;
}

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

.thanks-image {
    flex: 1;
    background-color: #dfe4ea;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 968px) {
    .nav-split {
        padding: 20px 30px;
    }

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

    .hero-content {
        padding: 60px 30px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .story-section {
        flex-direction: column;
        padding: 60px 30px;
    }

    .services-grid {
        padding: 60px 30px;
    }

    .service-card {
        width: 100%;
    }

    .about-preview {
        flex-direction: column;
        padding: 60px 30px;
    }

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

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

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

    .story-split {
        flex-direction: column;
    }

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

    .contact-info-section {
        flex-direction: column;
    }

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