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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.ad-notice {
    color: #95a5a6;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #7f8c8d;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-block {
    background-color: #ecf0f1;
}

.intro-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.intro-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.problem-section {
    background-color: #ffffff;
}

.problem-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.services-highlight {
    background-color: #f8f9fa;
}

.services-highlight h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.select-service {
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.trust-section {
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a2e;
}

.testimonial-block {
    background-color: #ecf0f1;
    padding: 2rem;
    border-left: 4px solid #3498db;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.method-section {
    background-color: #f8f9fa;
}

.method-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.method-visual {
    flex: 1;
}

.method-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.method-text {
    flex: 1;
}

.method-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.method-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.benefits-grid {
    background-color: #ffffff;
}

.benefits-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

.form-section {
    background-color: #1a1a2e;
    color: #ffffff;
}

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.main-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

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

.btn-submit:hover {
    background-color: #229954;
}

.disclaimer-section {
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-column p {
    font-size: 0.95rem;
    color: #95a5a6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept {
    padding: 0.7rem 1.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    padding: 0.7rem 1.5rem;
    background-color: #95a5a6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.content-section {
    background-color: #ffffff;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.team-section {
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a2e;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.approach-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

.experience-section {
    background-color: #ecf0f1;
}

.experience-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.experience-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.values-section {
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
}

.values-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.value-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-block p {
    font-size: 1rem;
    color: #7f8c8d;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cta-section {
    background-color: #ecf0f1;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.contact-info {
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 3rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-additional {
    background-color: #f8f9fa;
    text-align: center;
}

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.contact-additional p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.thanks-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-details {
    background-color: #ecf0f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.next-steps {
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a2e;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.step-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

.legal-page {
    background-color: #ffffff;
}

.legal-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #95a5a6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .problem-content,
    .method-layout,
    .service-detail,
    .service-detail.reverse,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-card {
        max-width: 100%;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        width: 100%;
    }
}