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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

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

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

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

.intro-split-reverse {
    display: flex;
    min-height: 500px;
}

.intro-image-left {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.intro-content-right {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

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

.services-intro {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.services-header-center h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-left,
.service-card-right {
    display: flex;
    margin-bottom: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card-left {
    flex-direction: row;
}

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

.service-card-left img,
.service-card-right img {
    width: 50%;
    object-fit: cover;
}

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

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

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

.price {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
    margin-top: auto;
}

.services-cta-center {
    text-align: center;
    margin-top: 50px;
}

.form-section-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 80px 0;
}

.form-content-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.form-container-right {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

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

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

.trust-content-center h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.trust-points-split {
    display: flex;
    gap: 50px;
}

.trust-left,
.trust-right {
    flex: 1;
}

.trust-left p,
.trust-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

.footer-left {
    flex: 1.5;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-left p {
    margin-bottom: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

.disclaimer-text {
    font-size: 13px;
    color: #95a5a6;
    margin-top: 25px;
    line-height: 1.5;
}

.footer-right {
    flex: 1;
    display: flex;
    gap: 50px;
}

.footer-links-group h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 10px;
}

.footer-links-group a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
    margin: 0;
    font-size: 15px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    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: #ecf0f1;
    border: 2px solid #ecf0f1;
}

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

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

.hero-text-left {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-left h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-text-left p {
    font-size: 18px;
    color: #5a6c7d;
}

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

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

.story-split-reverse {
    display: flex;
    padding: 80px 0;
    background-color: #ffffff;
}

.story-image-left {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.story-text-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text-right h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

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

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

.values-header-center h2 {
    font-size: 38px;
    color: #2c3e50;
}

.values-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item-left,
.value-item-right {
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item-left {
    margin-right: 15%;
}

.value-item-right {
    margin-left: 15%;
}

.value-item-left h3,
.value-item-right h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item-left p,
.value-item-right p {
    font-size: 16px;
    color: #5a6c7d;
}

.team-approach-split {
    display: flex;
    background-color: #ffffff;
    padding: 80px 0;
}

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

.approach-text-left h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.approach-image-right {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.methodology-split-reverse {
    display: flex;
    background-color: #f8f9fa;
    padding: 80px 0;
}

.methodology-image-left {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.methodology-text-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.methodology-text-right h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.methodology-text-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.methodology-text-right ul {
    margin-left: 25px;
    margin-bottom: 18px;
}

.methodology-text-right li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #5a6c7d;
}

.cta-section-center {
    padding: 80px 30px;
    background-color: #ffffff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

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

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

.services-detailed {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    padding: 60px 0;
}

.service-detail-left {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.service-detail-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.service-features ul {
    margin: 25px 0 25px 25px;
}

.service-features li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
}

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

.service-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.service-detail-split-reverse {
    display: flex;
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-detail-left-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-left-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-detail-left-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #5a6c7d;
}

.service-detail-right-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

.contact-hero {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.contact-hero-content p {
    font-size: 18px;
    color: #5a6c7d;
}

.contact-main-split {
    display: flex;
    padding: 80px 30px;
    background-color: #ffffff;
    gap: 60px;
}

.contact-info-left {
    flex: 1;
}

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

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

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

.contact-note {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #5a6c7d;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

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

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-placeholder p {
    font-size: 17px;
    color: #5a6c7d;
    text-align: center;
    line-height: 1.7;
}

.contact-alternative {
    padding: 80px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.alternative-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.thanks-section {
    padding: 120px 30px;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.service-confirmation {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.service-confirmation p {
    margin: 0;
    color: #2c3e50;
}

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

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

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

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

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

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

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

.legal-content ul {
    margin: 20px 0 20px 30px;
}

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

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dfe6e9;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split-reverse,
    .form-section-split,
    .page-hero-split,
    .story-split-reverse,
    .team-approach-split,
    .methodology-split-reverse,
    .service-detail-split,
    .service-detail-split-reverse,
    .contact-main-split {
        flex-direction: column;
    }

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .service-card-left img,
    .service-card-right img,
    .service-info {
        width: 100%;
    }

    .trust-points-split {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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

    .value-item-left,
    .value-item-right {
        margin: 0;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}