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

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 35px;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
}

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

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

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.benefits-section {
    background-color: #ffffff;
    padding: 90px 60px;
}

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

.section-header-center h2 {
    font-size: 38px;
    color: #1a252f;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.benefit-card p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.6;
}

.services-showcase {
    background-color: #f8f9fa;
    padding: 90px 0;
}

.services-intro-split {
    display: flex;
    align-items: center;
    margin-bottom: 70px;
}

.services-text {
    flex: 1;
    padding: 0 80px;
}

.services-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-text p {
    font-size: 18px;
    color: #546e7a;
}

.services-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-item-split {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    margin-bottom: 25px;
    padding: 35px 45px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-details p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 15px;
}

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

.service-action {
    margin-left: 40px;
}

.select-service {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

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

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-intro {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

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

.trust-section {
    background-color: #f8f9fa;
    padding: 70px 60px;
}

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

.trust-content-center h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.disclaimer {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    font-style: italic;
}

.site-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    color: #b0bec5;
    line-height: 1.6;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

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

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

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

.page-hero-split {
    display: flex;
    min-height: 450px;
    align-items: center;
}

.page-hero-content {
    flex: 1;
    padding: 80px 80px;
    background-color: #f8f9fa;
}

.page-hero-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a252f;
}

.page-hero-content p {
    font-size: 19px;
    color: #546e7a;
}

.page-hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.about-content-split {
    display: flex;
    align-items: center;
    padding: 90px 60px;
}

.about-text {
    flex: 1;
    padding-right: 60px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-text p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.values-section {
    background-color: #f8f9fa;
    padding: 90px 60px;
}

.section-title-center {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

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

.value-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 90px 60px;
}

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

.team-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

.team-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
}

.team-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.cta-section-centered {
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
    padding: 90px 60px;
}

.cta-section-centered h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-section-centered p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-section-centered .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section-centered .cta-primary:hover {
    background-color: #ecf0f1;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #546e7a;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-pricing-detail {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #546e7a;
}

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

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

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

.process-section {
    background-color: #f8f9fa;
    padding: 90px 60px;
}

.process-steps {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.process-step p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.contact-page {
    padding: 60px 40px;
}

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

.contact-header-center h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #1a252f;
}

.contact-header-center p {
    font-size: 18px;
    color: #546e7a;
}

.contact-content-split {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 600;
}

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

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

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

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

.location-info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 60px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.location-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.location-info p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-page {
    display: flex;
    min-height: 500px;
    align-items: center;
    padding: 60px;
}

.thanks-content-center {
    flex: 1;
    text-align: center;
    padding: 60px;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-content-center h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 30px;
}

.selected-service-info {
    margin-bottom: 35px;
}

.service-selected {
    font-size: 17px;
    color: #2c3e50;
    background-color: #e8f4f8;
    padding: 15px 25px;
    border-radius: 6px;
    display: inline-block;
}

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

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

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

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

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

.next-steps {
    background-color: #f8f9fa;
    padding: 90px 60px;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a252f;
}

.steps-grid {
    display: flex;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a252f;
}

.step-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

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

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

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

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

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

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

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

.legal-content ul li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #6c757d;
}

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

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

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

.cookie-table td {
    color: #546e7a;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .services-intro-split,
    .form-section-split,
    .about-content-split,
    .team-split,
    .service-detail-split,
    .contact-content-split,
    .thanks-page {
        flex-direction: column;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .benefits-grid,
    .values-grid,
    .process-steps,
    .steps-grid {
        flex-direction: column;
    }

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

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}