* {
    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: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a {
    color: #34495e;
    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 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

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

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

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

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

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

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

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

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.services-overview {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

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

.section-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px 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 8px 20px rgba(0,0,0,0.12);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 20px;
    color: #34495e;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 0 24px 20px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

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

.contact-form-section {
    padding: 100px 60px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.form-container > p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

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

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 100px 60px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.9;
}

.values-section {
    padding: 100px 60px;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.process-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.process-step {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

.service-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail.reverse {
    background-color: #f8f9fa;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

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

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

.detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.detail-image {
    flex: 1;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 24px 0;
}

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

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

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

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

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

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

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.contact-note {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 6px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
}

.contact-form-side {
    flex: 1;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-form-side h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-form-side > p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.thanks-content {
    padding: 100px 60px;
    background-color: #f8f9fa;
    min-height: 600px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 48px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
    font-weight: 600;
}

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

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

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

.step-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #34495e;
    padding-top: 6px;
}

.thanks-note {
    background-color: #ecf0f1;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.thanks-note p {
    font-size: 16px;
    color: #34495e;
}

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

.legal-page {
    padding: 60px 60px 100px;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
    font-weight: 600;
}

.legal-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-container ul {
    margin: 16px 0 24px 32px;
}

.legal-container ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #34495e;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

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

.cookies-table td {
    color: #34495e;
}

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

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

.footer-section {
    flex: 1 1 200px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 0;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    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: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

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

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

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

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

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

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

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

@media (max-width: 1024px) {
    .hero-split,
    .info-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-image,
    .split-image,
    .detail-image {
        min-height: 400px;
    }

    .service-cards {
        flex-direction: column;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 16px;
    }

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

    .hero-content,
    .split-content,
    .detail-content {
        padding: 60px 32px;
    }

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

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

    .services-overview,
    .values-section,
    .process-section,
    .cta-section {
        padding: 60px 32px;
    }

    .section-header h2,
    .values-section h2,
    .process-section h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .form-container,
    .legal-container {
        padding: 40px 32px;
    }

    .contact-form-side {
        padding: 32px 24px;
    }

    .thanks-container {
        padding: 60px 32px;
    }

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

    .main-footer {
        padding: 40px 32px 0;
    }

    .footer-content {
        gap: 32px;
    }
}