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

.ad-notice {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    background: #ffffff;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 60px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-minimal {
    padding: 120px 80px 80px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafbfc;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    color: #4a4a4a;
    max-width: 700px;
}

.hero-visual {
    width: 100%;
    height: 500px;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.intro-block {
    padding: 140px 80px;
    background: #ffffff;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    line-height: 1.2;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.insight-section {
    padding: 100px 80px;
    background: #f5f7f9;
}

.insight-container {
    display: flex;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-visual {
    flex: 1;
    background-color: #dce1e6;
}

.insight-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-content {
    flex: 1;
}

.insight-content h3 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.2;
}

.insight-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #2a2a2a;
}

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

.services-preview h2 {
    font-size: 54px;
    font-weight: 300;
    margin-bottom: 100px;
    text-align: center;
}

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

.service-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-visual {
    width: 100%;
    height: 280px;
    margin-bottom: 30px;
    background-color: #e8eaed;
    overflow: hidden;
}

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

.service-card h4 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #4a4a4a;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #0066cc;
}

.cta-button {
    padding: 16px 36px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
    background: #333333;
}

.trust-section {
    padding: 120px 80px;
    background: #f8f9fa;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
}

.testimonial {
    margin-bottom: 60px;
    padding: 50px;
    background: #ffffff;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #2a2a2a;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.cta-final {
    padding: 160px 80px;
    background: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

.cta-final h2 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 30px;
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 50px;
    color: #e0e0e0;
}

.cta-button-large {
    padding: 20px 50px;
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.cta-button-large:hover {
    background: #f0f0f0;
}

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

.form-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
}

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

.submit-button {
    padding: 18px 50px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #333333;
}

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

.disclaimer-section p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 40px;
}

.footer-content {
    display: flex;
    gap: 100px;
    margin-bottom: 60px;
    max-width: 1400px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

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

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

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

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

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 25px 80px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    font-size: 15px;
    margin-right: 30px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: #ffffff;
    color: #1a1a1a;
}

.cookie-accept:hover {
    background: #e0e0e0;
}

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

.cookie-reject:hover {
    background: #333333;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 20px 30px;
    }

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

    .hero-minimal {
        padding: 60px 30px 40px;
    }

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

    .hero-lead {
        font-size: 18px;
    }

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

    .services-grid {
        flex-direction: column;
        gap: 40px;
    }

    .insight-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}