:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #c9a227;
    --text: #2d2d2d;
    --text-light: #666666;
    --bg: #fafafa;
    --bg-alt: #f0f0f0;
    --white: #ffffff;
    --border: #e0e0e0;
    --success: #2e7d32;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

header {
    background-color: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ad-disclosure {
    background-color: var(--accent);
    color: var(--primary);
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 3px;
    font-weight: 600;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: #2a2a3a;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-dark {
    background-color: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--secondary);
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.intro-section {
    background-color: var(--white);
}

.intro-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.intro-content {
    flex: 1;
}

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

.intro-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.problem-section {
    background-color: var(--primary);
    color: var(--white);
}

.problem-grid {
    display: flex;
    gap: 40px;
}

.problem-item {
    flex: 1;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.problem-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent);
}

.problem-item p {
    opacity: 0.85;
    font-size: 15px;
}

.solution-section {
    background-color: var(--bg-alt);
}

.solution-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.solution-text {
    flex: 1.2;
}

.solution-text h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 25px;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

.solution-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.services-section {
    background-color: var(--white);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-image {
    height: 200px;
    background-color: #d8d8d8;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

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

.service-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.trust-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
}

.trust-grid {
    display: flex;
    gap: 40px;
    text-align: center;
}

.trust-item {
    flex: 1;
    padding: 30px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.trust-item h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-section {
    background-color: var(--bg-alt);
}

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

.testimonial-card {
    flex: 1;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-info h5 {
    color: var(--primary);
    font-size: 15px;
}

.author-info span {
    color: var(--text-light);
    font-size: 13px;
}

.cta-section {
    background-color: var(--accent);
    text-align: center;
}

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

.cta-section p {
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background-color: var(--white);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text);
}

.form-benefits li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.form-container {
    flex: 1;
    background-color: var(--bg);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: var(--secondary);
}

.about-hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-hero p {
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: var(--bg);
    border-radius: 8px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.value-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.value-item p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-info-section {
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    gap: 40px;
}

.contact-item {
    flex: 1;
    padding: 30px;
    background-color: var(--bg);
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 20px;
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
}

footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-col a {
    opacity: 0.7;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    opacity: 0.6;
    font-size: 13px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.disclaimer {
    background-color: var(--secondary);
    padding: 20px 0;
    text-align: center;
}

.disclaimer p {
    color: var(--white);
    opacity: 0.6;
    font-size: 12px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    opacity: 0.9;
}

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

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

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

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

.legal-page {
    padding: 80px 0;
    background-color: var(--white);
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 24px;
    color: var(--primary);
    margin: 30px 0 15px;
}

.legal-page p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-page li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-alt);
}

.thanks-content {
    max-width: 600px;
    padding: 60px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: var(--white);
}

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

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.8;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-row {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-row-image {
    flex: 0 0 350px;
    height: 280px;
    background-color: #d8d8d8;
    overflow: hidden;
}

.service-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-row-content {
    flex: 1;
    padding: 30px;
}

.service-row-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-row-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-row-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .intro-grid,
    .solution-content,
    .form-wrapper,
    .about-content {
        flex-direction: column;
    }

    .problem-grid,
    .trust-grid,
    .testimonials-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

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

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

    .service-row-image {
        flex: none;
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary);
        padding: 20px;
        gap: 15px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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