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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.value-proposition {
    padding: 100px 40px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.value-proposition h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.value-proposition p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
}

.services-split {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.split-row {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 80px auto;
}

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

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

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #546e7a;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
}

.form-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

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

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    font-style: italic;
}

.site-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 40px 20px 40px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    color: #95a5a6;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #546e7a;
}

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

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

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

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

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

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

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

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

.page-header h1 {
    font-size: 48px;
    color: #2c3e50;
}

.about-split {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

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

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #ffffff;
}

.services-detailed {
    background-color: #ffffff;
}

.service-block {
    padding: 100px 40px;
}

.service-block.alt {
    background-color: #f8f9fa;
}

.service-content-full {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-content-full.reverse {
    flex-direction: row-reverse;
}

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

.service-image-side img {
    width: 100%;
    height: auto;
    display: block;
}

.service-text-side {
    flex: 1;
}

.service-text-side h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.service-text-side p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #546e7a;
}

.service-text-side ul {
    margin-bottom: 32px;
    padding-left: 20px;
}

.service-text-side ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 12px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.contact-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.contact-block h2,
.contact-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-block a {
    color: #3498db;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

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

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

.legal-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 10px;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.cookie-table h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.cookie-table ul {
    list-style: none;
    padding-left: 0;
}

.cookie-table ul li {
    font-size: 14px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .split-row,
    .split-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

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

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