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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
}

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

.header-left {
    flex: 1;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

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

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

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

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

.hero-content-side {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.hero-content-side h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #2c3e50;
}

.hero-content-side p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

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

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

.intro-split {
    display: flex;
    padding: 100px 60px;
}

.intro-content-side {
    flex: 1;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.intro-content-side h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.intro-content-side p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

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

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

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

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

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

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

.services-preview {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    min-width: 480px;
}

.service-image-wrapper {
    flex: 0 0 200px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    flex: 1;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 8px;
}

.btn-service {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-section-split {
    display: flex;
    padding: 100px 60px;
    background-color: #ffffff;
    gap: 60px;
}

.form-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.form-content-side h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.form-content-side p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.form-side {
    flex: 1;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.selected-service-display {
    padding: 16px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    margin-bottom: 8px;
}

.selected-service-display span {
    font-weight: 600;
    color: #2c3e50;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d7de;
    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;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.trust-split {
    display: flex;
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.trust-image-side {
    flex: 1;
    overflow: hidden;
    background-color: #e0e0e0;
    border-radius: 8px;
}

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

.trust-content-side {
    flex: 1;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

.trust-content-side h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.trust-point h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.trust-point p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.7;
    color: #95a5a6;
    font-style: italic;
}

.page-hero-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.page-hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.page-hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #2c3e50;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.services-detailed {
    padding: 80px 60px;
}

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.service-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 8px;
}

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

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

.about-story-split {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
}

.about-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.about-content-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.about-content-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.about-content-right {
    flex: 1;
    overflow: hidden;
    background-color: #e0e0e0;
    border-radius: 8px;
}

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

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

.about-values h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    min-width: 400px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.about-team-split {
    display: flex;
    padding: 100px 60px;
}

.team-image-side {
    flex: 1;
    overflow: hidden;
    background-color: #e0e0e0;
    border-radius: 8px;
}

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

.team-content-side {
    flex: 1;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.team-content-side h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-content-side p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.about-cta-split {
    display: flex;
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.cta-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding-right: 60px;
}

.cta-content-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.cta-content-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.cta-image-right {
    flex: 1;
    overflow: hidden;
    background-color: #e0e0e0;
    border-radius: 8px;
}

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

.contact-info-split {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
}

.contact-details-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-details-side h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

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

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 20px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    margin-top: 12px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.7;
    color: #2c3e50;
}

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

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

.contact-approach-split {
    display: flex;
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

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

.approach-content-side {
    flex: 1;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-content-side h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
}

.approach-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-faq-split {
    padding: 80px 60px;
}

.contact-faq-split h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.thanks-section-split {
    display: flex;
    min-height: 600px;
    padding: 100px 60px;
    gap: 60px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
}

.thanks-service-info {
    background-color: #e8f4f8;
    padding: 16px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    margin: 12px 0;
}

.thanks-next-steps h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.thanks-next-steps ul {
    list-style-position: inside;
    padding-left: 8px;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

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

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

.legal-page {
    padding: 80px 60px;
    display: flex;
    justify-content: center;
}

.legal-content {
    max-width: 900px;
    width: 100%;
}

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

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

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

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

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

@media (max-width: 1024px) {
    .header-split {
        padding: 16px 32px;
        flex-direction: column;
        gap: 16px;
    }

    .header-right {
        align-items: center;
    }

    .hero-split,
    .intro-split,
    .trust-split,
    .page-hero-split,
    .about-story-split,
    .about-team-split,
    .about-cta-split,
    .contact-info-split,
    .contact-approach-split,
    .thanks-section-split {
        flex-direction: column;
    }

    .hero-content-side,
    .intro-content-side,
    .trust-content-side,
    .page-hero-content,
    .about-content-left,
    .team-content-side,
    .cta-content-left,
    .contact-details-side,
    .approach-content-side,
    .thanks-content {
        padding: 40px 32px;
    }

    .trust-content-side,
    .team-content-side {
        padding-left: 32px;
    }

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

    .service-image-wrapper {
        flex: 0 0 200px;
    }

    .form-section-split {
        flex-direction: column;
        padding: 60px 32px;
    }

    .services-preview,
    .services-detailed,
    .about-values,
    .contact-faq-split,
    .legal-page {
        padding: 60px 32px;
    }

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

@media (max-width: 768px) {
    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-content-side h1,
    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .services-preview h2,
    .about-values h2,
    .contact-faq-split h2 {
        font-size: 32px;
    }

    .service-card {
        min-width: 100%;
    }

    .value-card,
    .faq-item {
        min-width: 100%;
    }

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

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