* {
    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 16px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a5568;
}

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

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

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

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

.split-standard,
.split-reverse {
    display: flex;
    min-height: 500px;
}

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

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

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

.split-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

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

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

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    display: inline-block;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #2980b9;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 48px;
    gap: 32px;
    background-color: #f8f9fa;
}

.service-card {
    flex: 1 1 calc(50% - 32px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: #1a252f;
}

.service-card p {
    padding: 0 24px 16px;
    color: #4a5568;
    font-size: 16px;
    flex-grow: 1;
}

.service-card .price {
    padding: 16px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #2c5aa0;
}

.btn-select {
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 80px 48px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 32px;
    color: #4a5568;
    font-size: 17px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.disclaimer {
    max-width: 960px;
    margin: 0 auto;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
}

footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 48px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 32px;
    gap: 48px;
}

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #2d3748;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    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: 24px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.thanks-container {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 48px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    max-width: 640px;
    margin-bottom: 16px;
}

.services-hero {
    background-color: #f8f9fa;
    padding: 80px 48px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a252f;
}

.services-hero p {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    padding: 80px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.service-item h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-item .service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 16px;
}

.service-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-item ul {
    margin: 16px 0 24px 24px;
}

.service-item li {
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 16px;
}

.about-hero {
    background-color: #f8f9fa;
    padding: 80px 48px;
}

.about-content {
    max-width: 960px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: #1a252f;
}

.about-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: #1a252f;
}

.about-content p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a252f;
}

.contact-info {
    max-width: 640px;
    margin: 48px auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.contact-info p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-info strong {
    color: #2c3e50;
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin: 32px 0 16px;
    color: #1a252f;
}

.legal-page h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

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

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

.legal-page li {
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.7;
}

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

    .nav-right {
        gap: 16px;
    }

    .hero-split,
    .split-standard,
    .split-reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content {
        padding: 40px 24px;
    }

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

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}