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

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

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

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

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

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

.nav-links a:hover {
    color: #0066cc;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 4rem;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
}

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

.btn-cta {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

.intro-image {
    flex: 1;
    background-color: #dde5ec;
}

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

.intro-text {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
}

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

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

.problem-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.problem-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.problem-card {
    flex: 1;
    max-width: 350px;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.problem-card p {
    color: #d0d0d0;
    line-height: 1.6;
}

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

.insight-text {
    flex: 1;
    padding: 4rem;
    background-color: #f1f5f8;
}

.insight-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
}

.insight-image {
    flex: 1;
    background-color: #c9d6e1;
}

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

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

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.services-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1;
    max-width: 380px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: #555;
}

.service-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1rem 1.5rem;
}

.btn-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 0.9rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #0052a3;
}

.services-link {
    text-align: center;
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #0066cc;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

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

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.testimonial p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial .author {
    font-style: italic;
    color: #666;
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.form-container {
    flex: 1;
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-selection-display {
    background-color: #e3f2fd;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.service-selection-display p {
    margin: 0;
    color: #0066cc;
    font-weight: 600;
}

.service-selection-display.selected {
    background-color: #d4edda;
}

.service-selection-display.selected p {
    color: #155724;
}

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

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

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

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

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #b0b0b0;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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: 2rem;
}

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

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

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

.page-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #555;
}

.about-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
}

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

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

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

.method-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.method-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.method-left {
    flex: 1;
}

.method-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.method-left p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.method-right {
    flex: 1;
    background-color: #c9d6e1;
}

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

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

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

.experience-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f1f5f8;
}

.experience-image {
    flex: 1;
    background-color: #d0dce6;
}

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

.experience-text {
    flex: 1;
    padding: 4rem;
}

.experience-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.experience-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.cta-about {
    background-color: #0066cc;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-about .btn-cta {
    background-color: #ffffff;
    color: #0066cc;
}

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

.services-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
}

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

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

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

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.email-display {
    color: #0066cc;
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
    background-color: #e5ecf2;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.additional-info {
    max-width: 900px;
    margin: 0 auto;
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.additional-info p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.additional-info a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

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

.thanks-content {
    min-height: 500px;
    padding: 4rem 2rem;
}

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

.thanks-message {
    flex: 1;
}

.thanks-message h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #d4edda;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-details p {
    margin: 0;
    color: #155724;
    font-size: 1.1rem;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-steps {
    list-style: none;
    margin-bottom: 2.5rem;
}

.thanks-steps li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #444;
    font-size: 1.1rem;
}

.thanks-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

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

.thanks-image {
    flex: 1;
    background-color: #dde5ec;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

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

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #444;
    line-height: 1.6;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #666;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .experience-split,
    .about-intro-split,
    .method-split,
    .contact-split,
    .thanks-container,
    .form-split {
        flex-direction: column;
    }

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

    .services-cards,
    .problem-grid,
    .testimonial-grid,
    .footer-content {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}