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

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

.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: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right 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: #ffffff;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    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;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

.intro-alternate {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

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

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

.intro-text {
    flex: 1;
}

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

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

.features-grid {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.split-reverse {
    display: flex;
    flex-direction: row-reverse;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.split-text {
    flex: 1;
}

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

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

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

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

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

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

.services-cards {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    min-width: 300px;
}

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

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

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

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    margin: 0 25px 25px;
}

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

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.form-info ul {
    list-style: none;
    padding-left: 0;
}

.form-info ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.form-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: -12px;
}

input,
select {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d1d8e0;
    border-radius: 4px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #a8b2bc;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 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: #ffffff;
    color: #1a252f;
}

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

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

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

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

.content-text {
    flex: 1;
}

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

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

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

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.content-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

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

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

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

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

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

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

.cta-banner {
    padding: 80px 60px;
    background-color: #3498db;
    text-align: center;
}

.cta-banner h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 35px;
}

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

.cta-banner .cta-primary:hover {
    background-color: #f8f9fa;
}

.services-full {
    padding: 60px;
}

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

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

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.service-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-details ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-details ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.price-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    display: inline-block;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

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

.additional-info {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

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

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    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;
    line-height: 1.8;
    color: #5a6c7d;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

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

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-alternate,
    .split-reverse,
    .form-split,
    .content-split,
    .content-split-reverse,
    .service-item,
    .contact-split {
        flex-direction: column;
    }

    .nav-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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