* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fff;
}

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

.main-nav {
    background: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.hero-full {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 40, 80, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: #fff;
}

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

.hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

.story-section {
    padding: 6rem 2rem;
    background: #fff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: #1a1a2e;
    font-weight: 700;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #495057;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e9ecef;
}

.insight-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #495057;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e9ecef;
}

.problem-section {
    padding: 6rem 2rem;
    background: #fff;
}

.trust-block {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
}

.trust-stat {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00d9ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.solution-section {
    padding: 5rem 2rem;
    background: #fff;
}

.solution-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.solution-text {
    flex: 1;
}

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

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #495057;
}

.solution-image {
    flex: 1;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e9ecef;
}

.testimonials-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.testimonial {
    background: #fff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #00d9ff;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #495057;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a2e;
}

.benefits-section {
    padding: 6rem 2rem;
    background: #fff;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.benefit-card p {
    font-size: 1.05rem;
    color: #495057;
}

.services-preview {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.services-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #495057;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    align-items: center;
}

.service-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e9ecef;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #495057;
}

.select-service {
    background: #00d9ff;
    color: #1a1a2e;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #00b8d4;
}

.form-section {
    padding: 6rem 2rem;
    background: #fff;
}

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

.form-container h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #495057;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    background: #1a1a2e;
    color: #fff;
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #16213e;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

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

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

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #00d9ff;
}

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.85;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #00d9ff;
    color: #1a1a2e;
}

.cookie-btn.accept:hover {
    background: #00b8d4;
}

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

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-page {
    padding: 4rem 2rem;
    background: #fff;
}

.service-detail {
    max-width: 1100px;
    margin: 0 auto 3rem;
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
}

.service-detail-header img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e9ecef;
}

.service-detail-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #00d9ff;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: #495057;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d9ff;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1rem;
    color: #6c757d;
    font-style: italic;
}

.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #00d9ff, #00b8d4);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #16213e;
}

.about-section {
    padding: 4rem 2rem;
    background: #fff;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #495057;
    line-height: 1.8;
}

.team-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.team-content {
    max-width: 1100px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.team-member p {
    color: #6c757d;
}

.contact-page {
    padding: 4rem 2rem;
    background: #fff;
}

.contact-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.info-block p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #f8f9fa;
    border-radius: 4px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-page {
    padding: 4rem 2rem;
    background: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #1a1a2e;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #495057;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: #495057;
}

.thanks-page {
    padding: 6rem 2rem;
    background: #fff;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

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

.thanks-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 0.8rem;
}

.thanks-details strong {
    color: #1a1a2e;
}

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

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

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

    .insight-container,
    .solution-container {
        flex-direction: column;
    }

    .trust-content {
        flex-direction: column;
        gap: 2rem;
    }

    .benefit-card {
        flex: 1 1 100%;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        height: 240px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .service-detail-header img {
        width: 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }
}