* {
    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: #2a2a2a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    display: block;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fff;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-hero:hover {
    background-color: #333;
}

.intro-split {
    display: flex;
    background-color: #f5f5f5;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.services-grid {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    background-color: #fafafa;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 0;
}

.btn-select-service {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

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

.testimonials-section {
    background-color: #f5f5f5;
    padding: 90px 20px;
}

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

.testimonials-split {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

.form-section-split {
    display: flex;
    background-color: #fff;
}

.form-content {
    flex: 1;
    padding: 80px 60px;
}

.form-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-content > p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.form-visual {
    flex: 1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

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

.service-display {
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    border-left: 4px solid #1a1a1a;
}

.service-display.hidden {
    display: none;
}

.disclaimer-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-section h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

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

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

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.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-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-primary {
    padding: 10px 25px;
    background-color: #fff;
    color: #1a1a1a;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 10px 25px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.page-hero {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-hero p {
    font-size: 18px;
    color: #ccc;
}

.about-split {
    display: flex;
    background-color: #fff;
}

.about-content {
    flex: 1;
    padding: 80px 60px;
}

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

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

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

.values-section {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

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

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

.value-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-split {
    display: flex;
    background-color: #fff;
}

.team-image {
    flex: 1;
    overflow: hidden;
}

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

.team-content {
    flex: 1;
    padding: 80px 60px;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.approach-section {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

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

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

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.cta-section {
    padding: 90px 20px;
    background-color: #1a1a1a;
    text-align: center;
    color: #fff;
}

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

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

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.services-detail {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.btn-select {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #333;
}

.membership-info {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

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

.membership-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.membership-item {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
}

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

.membership-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.references-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.references-section h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.references-list a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-split {
    display: flex;
    background-color: #fff;
}

.contact-info-block {
    flex: 1;
    padding: 80px 60px;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.contact-visual {
    flex: 1;
    overflow: hidden;
}

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

.faq-section {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

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

.faq-item {
    max-width: 900px;
    margin: 0 auto 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
}

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

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

.thanks-section {
    padding: 120px 20px;
    background-color: #fff;
}

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

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.thanks-info {
    background-color: #f0f0f0;
    padding: 25px;
    margin: 40px 0;
    border-radius: 4px;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

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

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #888;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .about-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-content,
    .form-content,
    .about-content,
    .team-content,
    .contact-info-block,
    .service-info {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .intro-content h2,
    .about-content h2,
    .team-content h2 {
        font-size: 32px;
    }

    .section-header h2,
    .values-section h2,
    .approach-section h2,
    .membership-info h2,
    .faq-section h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .testimonials-split,
    .values-grid,
    .membership-grid {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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