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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

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

.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;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 60px 5% 60px 7%;
    background: #f8f9fa;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #556270;
}

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

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-primary {
    background: #3498db;
    color: #ffffff;
    padding: 16px 36px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cta-secondary {
    background: transparent;
    color: #3498db;
    padding: 16px 36px;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.split-content {
    flex: 1;
    padding: 70px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.split-visual {
    flex: 1;
    background: #dee2e6;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-preview {
    padding: 80px 5%;
    background: #ffffff;
}

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

.services-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

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

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

.service-card p {
    padding: 0 25px 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #556270;
}

.price {
    padding: 0 25px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
}

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

.link-arrow:hover {
    transform: translateX(5px);
}

.testimonials-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

.testimonials-flex {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #556270;
    font-style: italic;
}

.author {
    font-size: 15px;
    font-weight: 600;
    color: #3498db;
}

.form-section {
    padding: 80px 5%;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-container > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #556270;
}

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

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

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

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

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

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #adb5bd;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 200;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a252f;
}

.about-hero {
    background: #f8f9fa;
    padding: 100px 5%;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a252f;
}

.about-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #556270;
}

.content-section {
    padding: 80px 7%;
}

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

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

.services-list {
    padding: 80px 5%;
    background: #f8f9fa;
}

.services-list h1 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.service-item {
    display: flex;
    margin-bottom: 50px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

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

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

.contact-hero {
    background: #f8f9fa;
    padding: 100px 5%;
    text-align: center;
}

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

.contact-info {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.info-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #556270;
}

.legal-page {
    padding: 80px 7%;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

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

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    text-align: center;
}

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .services-grid,
    .testimonials-flex,
    .footer-content,
    .service-item,
    .cookie-content {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .about-hero h1,
    .services-list h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .services-preview h2,
    .testimonials-section h2,
    .form-container h2 {
        font-size: 32px;
    }

    .nav-right {
        flex-direction: column;
        gap: 15px;
    }
}