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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

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

.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2980b9;
}

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

.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: 25px;
    color: #1a252f;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
    max-width: 540px;
}

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

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

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

.cta-primary:hover {
    background-color: #1f5f8b;
}

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-visual {
    flex: 1;
    background-color: #dfe6e9;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

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

.services-grid {
    padding: 90px 60px;
    background-color: #ffffff;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.service-cards-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a252f;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0 25px 20px;
    line-height: 1.7;
    flex: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2980b9;
    margin: 0 25px 20px;
}

.service-card .select-service {
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    padding: 14px 25px;
    margin: 0 25px 25px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #1f5f8b;
}

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

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

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

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

#mainForm {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d8dd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #2980b9;
}

.service-display {
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 6px;
    color: #5a6c7d;
    font-size: 15px;
}

.service-display.selected {
    background-color: #e3f2fd;
    color: #2980b9;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
    transition: background-color 0.3s;
}

.btn-submit:not(:disabled) {
    background-color: #27ae60;
    cursor: pointer;
}

.btn-submit:not(:disabled):hover {
    background-color: #229954;
}

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

.trust-content {
    flex: 1;
    padding: 0 60px;
}

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

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

.trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-list li {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.trust-visual {
    flex: 1;
    background-color: #dfe6e9;
}

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

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 40px 60px;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5f7f;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px 30px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

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

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

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

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

.page-hero-visual {
    flex: 1;
    background-color: #dfe6e9;
}

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

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

.content-text {
    flex: 1;
    padding: 0 60px;
}

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

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

.content-visual {
    flex: 1;
    background-color: #dfe6e9;
}

.content-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2980b9;
    font-weight: 700;
}

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

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

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

.approach-visual {
    flex: 1;
    background-color: #dfe6e9;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-content {
    flex: 1;
    padding: 0 60px;
}

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

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

.page-header-center {
    text-align: center;
    padding: 80px 60px 60px;
    background-color: #f8f9fa;
}

.page-header-center h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.page-header-center p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.service-detail-split.reverse .service-detail-content {
    padding-right: 0;
    padding-left: 60px;
}

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

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

.service-price-display {
    font-size: 30px;
    font-weight: 700;
    color: #2980b9;
    margin: 25px 0 20px;
}

.cta-service {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.cta-service:hover {
    background-color: #1f5f8b;
}

.service-detail-visual {
    flex: 1;
    background-color: #dfe6e9;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.cta-section-centered {
    text-align: center;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.cta-section-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #34495e;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #2c3e50;
}

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

.contact-info {
    flex: 1;
    padding: 0 60px;
}

.contact-info h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.contact-info > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.contact-email {
    font-weight: 600;
    color: #2980b9;
}

.contact-visual {
    flex: 1;
    background-color: #dfe6e9;
}

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

.contact-note {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-note h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
    font-weight: 700;
}

.expectations-grid {
    display: flex;
    gap: 30px;
}

.expectation-item {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.expectation-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2980b9;
    font-weight: 700;
}

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

.thanks-section {
    min-height: 500px;
    padding: 80px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.8;
}

.service-confirmation {
    margin-bottom: 50px;
}

.selected-service-box {
    background-color: #e3f2fd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.service-name {
    font-size: 22px;
    color: #2980b9;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-price {
    font-size: 18px;
    color: #5a6c7d;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1f5f8b;
}

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.legal-intro {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 700;
}

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

.legal-page ul {
    margin: 15px 0 25px 25px;
}

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

.legal-page a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #dfe6e9;
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

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

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

.gdpr-table th {
    background-color: #ecf0f1;
    font-weight: 700;
    color: #2c3e50;
}

.gdpr-table td {
    font-size: 15px;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-split,
    .intro-split,
    .trust-split,
    .form-section-split,
    .page-hero-split,
    .content-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-content,
    .trust-content,
    .form-intro,
    .page-hero-content,
    .content-text,
    .approach-content,
    .service-detail-content,
    .contact-info {
        padding: 40px 30px;
    }

    .form-container {
        padding: 0 30px 40px;
    }

    .hero-visual,
    .intro-visual,
    .trust-visual,
    .page-hero-visual,
    .content-visual,
    .approach-visual,
    .service-detail-visual,
    .contact-visual {
        min-height: 300px;
    }

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

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

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

    .values-grid,
    .expectations-grid {
        flex-direction: column;
    }

    .value-item,
    .expectation-item {
        flex: 1 1 100%;
    }

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

    .service-detail-content {
        padding-right: 0;
    }

    .service-detail-split.reverse .service-detail-content {
        padding-left: 0;
    }

    .legal-page {
        padding: 60px 30px;
    }
}