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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(26,26,26,0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #e63946;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.ad-notice {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    position: fixed;
    top: 35px;
    right: 0;
    left: 0;
    z-index: 999;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #e63946;
}

.story-section {
    padding: 120px 20px;
    background: #f8f9fa;
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-container p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #333333;
    line-height: 1.9;
}

.inline-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 8px;
}

.problem-section {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.problem-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-block:nth-child(even) {
    flex-direction: row-reverse;
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #e63946;
}

.problem-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.problem-visual {
    flex: 1;
    background: #2a2a2a;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-section {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f1f1f1 100%);
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.insight-container p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333333;
    margin-bottom: 25px;
}

.trust-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.trust-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e63946;
}

.trust-card p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
}

.testimonials-section {
    padding: 100px 20px;
    background: #2a2a2a;
    color: #ffffff;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-item {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #e63946;
}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: #e0e0e0;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #aaaaaa;
    font-style: normal;
}

.benefits-section {
    padding: 120px 20px;
    background: #f8f9fa;
}

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

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

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

.benefit-item {
    flex: 1 1 calc(50% - 25px);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #e63946;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.benefit-content h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-content p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
}

.services-pricing-section {
    padding: 120px 20px;
    background: #ffffff;
}

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

.services-pricing-container h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

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

.service-card.selected {
    border-color: #e63946;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.25);
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.form-container .form-subtitle {
    text-align: center;
    color: #666666;
    margin-bottom: 40px;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.selected-service-display {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 25px;
    display: none;
}

.selected-service-display.visible {
    display: block;
}

.selected-service-display strong {
    color: #e63946;
    font-size: 1.1rem;
}

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

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

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

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

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 calc(25% - 40px);
    min-width: 220px;
}

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

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

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

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e63946;
}

.footer-col p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.7;
}

.email-text {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.footer-bottom p {
    color: #999999;
    font-size: 0.85rem;
}

.disclaimer {
    margin-top: 30px;
    padding: 25px;
    background: #2a2a2a;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.6;
}

.references-section {
    margin-top: 30px;
    padding: 25px;
    background: #2a2a2a;
    border-radius: 6px;
}

.references-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #e63946;
}

.references-section ol {
    margin-left: 20px;
}

.references-section li {
    color: #aaaaaa;
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

.references-section a {
    color: #6ca0dc;
    text-decoration: none;
}

.references-section a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: #e63946;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background: #555555;
    color: #ffffff;
}

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

.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 120px 20px 80px;
    text-align: center;
}

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

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

.page-content {
    padding: 80px 20px;
    background: #ffffff;
}

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

.page-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-container h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333333;
}

.page-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.page-container ul,
.page-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1 1 calc(50% - 25px);
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #e63946;
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 15px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: #ffffff;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.thanks-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-service strong {
    color: #e63946;
    font-size: 1.2rem;
}

.home-link {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #e63946;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-link:hover {
    background: #d62828;
    transform: translateY(-2px);
}

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

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

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 0.85rem;
    }

    .problem-block {
        flex-direction: column !important;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .form-container {
        padding: 35px 25px;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}