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

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

.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;
}

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px 80px 80px;
}

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

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 35px;
    max-width: 520px;
}

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

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

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

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

.intro-section {
    padding: 100px 80px;
    background: #f8f9fa;
}

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

.intro-text {
    flex: 1;
}

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

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

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

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

.services-preview {
    padding: 100px 80px;
}

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

.services-grid {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
    margin: 0 25px 20px;
}

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

.cta-center {
    text-align: center;
    margin-top: 40px;
}

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

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

.process-split {
    display: flex;
    background: #f8f9fa;
}

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

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content {
    flex: 1;
    padding: 100px 80px;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.form-section {
    padding: 100px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 50px;
    line-height: 1.6;
}

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

.form-row {
    display: flex;
    gap: 25px;
}

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

.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 #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: center;
}

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

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

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0bec5;
}

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #37474f;
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e50;
}

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

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

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

.btn-accept:hover {
    background: #1a252f;
}

.btn-reject {
    background: #e0e0e0;
    color: #2c3e50;
}

.btn-reject:hover {
    background: #d0d0d0;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

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

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

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

    .hero-content,
    .process-content {
        padding: 60px 40px;
    }

    .intro-section,
    .services-preview,
    .form-section {
        padding: 60px 40px;
    }
}