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

.ad-disclosure {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

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

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

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

.nav-right a {
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #0f172a;
}

.hero-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #0f172a;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #0f172a;
    color: #ffffff;
}

.split-reverse {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background: #f8fafc;
}

.split-standard {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
}

.split-image {
    flex: 1;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f172a;
}

.split-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
}

.split-content h4 {
    font-size: 18px;
    margin-top: 24px;
    color: #0f172a;
}

.content-centered {
    padding: 80px 5%;
    text-align: center;
}

.content-centered h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #0f172a;
}

.trends-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trend-card {
    flex: 0 1 320px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.trend-card h3 {
    font-size: 20px;
    padding: 20px 20px 12px;
    color: #0f172a;
}

.trend-card p {
    padding: 0 20px 20px;
    color: #475569;
    font-size: 15px;
}

.services-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.service-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 6px;
}

.service-item h4 {
    margin: 0 0 8px 0;
}

.price {
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0f172a;
}

.form-container > p {
    margin-bottom: 32px;
    color: #475569;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0f172a;
}

.btn-submit {
    padding: 14px 32px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 5% 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p,
.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    display: block;
}

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

.footer-disclaimer {
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 13px;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 20px 5%;
    display: none;
    z-index: 1000;
}

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

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

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

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

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

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

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

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

.page-hero {
    padding: 80px 5%;
    text-align: center;
    background: #f8fafc;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0f172a;
}

.page-hero p {
    font-size: 18px;
    color: #475569;
}

.values-list {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-block {
    flex: 0 1 320px;
    text-align: left;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
}

.value-block p {
    color: #475569;
    font-size: 15px;
}

.cta-full {
    padding: 80px 5%;
    text-align: center;
    background: #0f172a;
    color: #ffffff;
}

.cta-full h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-full p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #cbd5e1;
}

.cta-full .cta-primary {
    background: #ffffff;
    color: #0f172a;
}

.cta-full .cta-primary:hover {
    background: #f8fafc;
}

.services-grid {
    padding: 60px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 0 1 380px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #0f172a;
}

.service-card p {
    padding: 0 24px 12px;
    color: #475569;
    font-size: 15px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    padding: 12px 24px;
}

.service-features {
    list-style: none;
    padding: 0 24px 24px;
}

.service-features li {
    padding: 8px 0;
    color: #475569;
    font-size: 14px;
    border-top: 1px solid #f1f5f9;
}

.service-features li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: 700;
    margin-right: 8px;
}

.contact-split {
    display: flex;
    padding: 60px 5%;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0f172a;
}

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0f172a;
}

.info-block p {
    color: #475569;
    font-size: 15px;
}

.contact-map {
    flex: 1;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0f172a;
}

.faq-item p {
    color: #475569;
    font-size: 15px;
}

.thanks-container {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #10b981;
}

.thanks-content > p {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 24px;
}

.thanks-info {
    margin-bottom: 32px;
}

.thanks-info p {
    color: #475569;
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.thanks-image {
    flex: 1;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #0f172a;
}

.legal-content .updated {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0f172a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #0f172a;
}

.legal-content p {
    color: #475569;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.legal-content a {
    color: #0f172a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #334155;
}

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

.cookie-table td {
    color: #475569;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

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

    .content-centered h2,
    .split-content h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .nav-split {
        flex-direction: column;
        gap: 16px;
    }

    .trends-grid,
    .values-list {
        gap: 24px;
    }

    .cookie-content {
        flex-direction: column;
    }

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