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

:root {
    --primary-color: #1a2332;
    --secondary-color: #e63946;
    --accent-color: #f77f00;
    --light-bg: #f8f9fa;
    --dark-bg: #0d1117;
    --text-primary: #2b2d42;
    --text-light: #6c757d;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: #ffffff;
}

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

.nav-wrapper {
    background: rgba(26, 35, 50, 0.97);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ad-disclosure {
    background: #fff3cd;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,35,50,0.8), rgba(230,57,70,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: white;
    padding: 0 40px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.story-section {
    padding: 90px 0;
    background: white;
}

.section-intro {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.problem-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 70px 0;
}

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

.problem-text {
    flex: 1.2;
}

.problem-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.problem-text ul {
    list-style: none;
    margin-top: 30px;
}

.problem-text li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-primary);
}

.problem-text li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.problem-visual {
    flex: 1;
    background: #dee2e6;
}

.problem-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.insight-section {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
}

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

.insight-wrapper h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.insight-wrapper p {
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
}

.benefits-grid {
    padding: 90px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 70px;
}

.benefits-header h2 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.grid-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e9ecef;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-showcase {
    padding: 90px 0;
    background: var(--light-bg);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 46px;
    color: var(--primary-color);
}

.service-item {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.service-image {
    flex: 1;
    background: #dee2e6;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
}

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

.service-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    align-self: flex-start;
    background: var(--accent-color);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: #e07200;
    transform: translateX(5px);
}

.trust-section {
    padding: 80px 0;
    background: white;
}

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

.testimonials-wrapper h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-item {
    background: var(--light-bg);
    padding: 35px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 30px;
    border-radius: 6px;
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.form-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-color), #2d3e5f);
    color: white;
}

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

.form-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
}

.form-container .form-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.85);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-color);
    color: white;
}

.submit-btn {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #d62839;
    transform: scale(1.02);
}

.disclaimer-section {
    padding: 60px 0;
    background: #fff8e1;
    border-top: 2px solid #ffd54f;
    border-bottom: 2px solid #ffd54f;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.disclaimer-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-column p,
.footer-column address {
    font-size: 14px;
    line-height: 1.8;
    font-style: normal;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.98);
    color: white;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.cookie-accept {
    background: var(--accent-color);
    color: white;
}

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

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

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

.hidden {
    display: none !important;
}

.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg), white);
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 70px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-page {
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.email-display {
    color: var(--text-primary);
    font-weight: 500;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
}

.legal-header {
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--text-primary);
}

.legal-section p,
.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 30px;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        flex-direction: column;
        background: var(--primary-color);
        width: 250px;
        height: calc(100vh - 60px);
        padding: 30px;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .problem-content,
    .service-item,
    .footer-content,
    .contact-info-grid {
        flex-direction: column;
    }

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

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