* {
    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: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

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

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

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

.services-grid {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

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

.cta-centered {
    text-align: center;
    margin-top: 60px;
}

.form-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.form-section.split {
    gap: 0;
}

.form-content {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #dce1e7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-visual {
    flex: 1;
    overflow: hidden;
    background-color: #e9ecef;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.trust-text {
    flex: 1;
}

.trust-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.trust-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e9ecef;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    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: 40px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro.split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

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

.philosophy-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.philosophy-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.philosophy-card {
    flex: 1 1 calc(50% - 20px);
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.philosophy-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

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

.experience-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.experience-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.experience-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.cta-section-full {
    padding: 100px 40px;
    background-color: #3498db;
    text-align: center;
}

.cta-full-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-full-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.cta-full-content .cta-button {
    background-color: #ffffff;
    color: #3498db;
}

.cta-full-content .cta-button:hover {
    background-color: #ecf0f1;
}

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

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

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

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

.service-detail-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-detail-info p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-detail-info h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.service-detail-info ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #5a6c7d;
}

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

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

.services-cta {
    background-color: #f8f9fa;
    padding: 80px 40px;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.contact-section.split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
}

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

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

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

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-full {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info-full h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-info-full p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.contact-info-full ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.contact-info-full ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.location-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.location-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.thanks-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

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

.thanks-info ol {
    list-style-position: inside;
    font-size: 18px;
    color: #5a6c7d;
}

.thanks-info ol li {
    margin-bottom: 12px;
}

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

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

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

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

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #5a6c7d;
}

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

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

.legal-content em {
    color: #95a5a6;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-section.split,
    .trust-content.split,
    .about-intro.split,
    .approach-split,
    .service-detail,
    .contact-section.split {
        flex-direction: column;
    }

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

    .services-container {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .philosophy-card {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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