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

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

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

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

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

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

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

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

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #5a6c7d;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.split-text h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a252f;
    font-weight: 700;
}

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

.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.split-visual img {
    width: 100%;
    height: 100%;
}

.services-intro {
    padding: 80px 60px 40px;
    text-align: center;
}

.services-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 60px 80px;
    gap: 40px;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #1a252f;
    font-weight: 700;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.service-select {
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.form-container > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

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

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

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

.form-submit {
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #1a252f;
}

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

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

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.footer-column a {
    color: #b8c5d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #9ca9b3;
}

.footer-bottom {
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 60px;
    display: none;
    z-index: 1000;
}

.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 {
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

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

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

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

.cookie-accept {
    background-color: #ffffff;
    color: #2c3e50;
}

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

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

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

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

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

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

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

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

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

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a252f;
    font-weight: 700;
}

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

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

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

.service-detail-split {
    display: flex;
    min-height: 480px;
}

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

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

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 30px 0;
}

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

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.service-detail-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
}

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

.cta-full h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.cta-full p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 36px;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

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

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

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

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

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

.contact-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.location-section p {
    font-size: 18px;
    color: #5a6c7d;
}

.thanks-section {
    display: flex;
    min-height: 600px;
}

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

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

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

.thanks-detail {
    margin: 30px 0;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

.thanks-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.legal-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-page ul {
    margin: 16px 0 16px 30px;
}

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

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

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

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

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

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

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

    .hero-content,
    .split-text,
    .service-detail-content,
    .contact-info,
    .thanks-content {
        padding: 60px 40px;
    }

    .split-nav {
        padding: 20px 40px;
    }

    .services-grid {
        padding: 40px 40px 60px;
    }

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

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

    .value-item {
        flex: 0 0 100%;
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

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

@media (max-width: 768px) {
    .nav-right {
        gap: 20px;
    }

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

    .split-text h2,
    .services-header h2 {
        font-size: 32px;
    }

    .form-section,
    .cta-full,
    .location-section {
        padding: 60px 30px;
    }

    .split-nav {
        padding: 16px 30px;
    }

    .cookie-banner {
        padding: 20px 30px;
    }
}