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

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

.main-nav {
    background-color: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 20px 60px;
    color: #ffffff;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 40px;
    color: #ecf0f1;
    font-weight: 300;
}

.hero-image-wrapper {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
    background-color: #34495e;
}

.intro-block {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-side {
    flex: 1;
}

.text-side h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

.text-side p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.image-side {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.image-side img {
    width: 100%;
    display: block;
    background-color: #e0e0e0;
}

.problem-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.problem-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.problem-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ecf0f1 0%, #ffffff 100%);
}

.container-full {
    max-width: 1300px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.service-image {
    flex: 0 0 350px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    display: block;
    background-color: #e0e0e0;
}

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

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
    display: block;
}

.select-service-btn {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #1a1a2e;
    transform: translateY(-2px);
}

.select-service-btn.selected {
    background-color: #27ae60;
}

.trust-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.testimonial-block {
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-block blockquote {
    font-style: italic;
}

.testimonial-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #bdc3c7;
}

.cta-form-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.cta-form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.cta-form-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.main-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.disclaimer-section {
    padding: 50px 20px;
    background-color: #ecf0f1;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

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

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

.cookie-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cookie-link {
    color: #bdc3c7;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #ffffff;
}

@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .service-item {
        flex-direction: column !important;
        gap: 25px;
    }

    .service-image {
        flex: 0 0 auto;
        width: 100%;
    }

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

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

@media (max-width: 640px) {
    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .main-form {
        padding: 25px;
    }
}