:root {
    --primary: #1a3a5c;
    --secondary: #e8a430;
    --accent: #2d5a87;
    --dark: #0d1f2d;
    --light: #f5f7fa;
    --text: #2c3e50;
    --text-light: #6b7c8f;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(26, 58, 92, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 58, 92, 0.18);
    --radius: 8px;
    --radius-lg: 16px;
}

* {
    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: var(--light);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

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

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

.ad-disclosure {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
}

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1400&q=80') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background-color: var(--accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 400px;
    display: block;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #d4941f;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

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

.feature-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

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

.feature-card p {
    color: var(--text-light);
}

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 450px;
    display: block;
}

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

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

.split-content ul {
    list-style: none;
    margin: 24px 0;
}

.split-content li {
    padding: 8px 0 8px 32px;
    position: relative;
}

.split-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
}

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

.service-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-image {
    width: 300px;
    flex-shrink: 0;
    background-color: var(--accent);
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
}

.service-content {
    padding: 30px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.service-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

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

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

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 24px;
    opacity: 0.95;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--dark);
}

.testimonial-info strong {
    display: block;
    font-size: 16px;
}

.testimonial-info span {
    font-size: 14px;
    opacity: 0.7;
}

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

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

.cta-section p {
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 32px;
    font-size: 18px;
}

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

.cta-section .btn:hover {
    background: var(--primary);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e6ed;
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

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

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.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 {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.disclaimer {
    background: #f0f4f8;
    padding: 40px 0;
    border-top: 1px solid #e0e6ed;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
}

.cookie-content a {
    color: var(--secondary);
}

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

.cookie-buttons button {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--dark);
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--text);
}

.content-section ul,
.content-section ol {
    margin: 16px 0 16px 24px;
}

.content-section li {
    margin-bottom: 8px;
}

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

.contact-info {
    flex: 1 1 400px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-details p {
    color: var(--text-light);
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 200px;
    background-color: var(--accent);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
}

.service-card-content {
    padding: 30px;
}

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

.service-card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 60px;
}

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

.service-card-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-story-content {
    flex: 1 1 500px;
}

.about-story-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary);
}

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

.about-story-image {
    flex: 1 1 400px;
    background-color: var(--accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 400px;
}

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

.value-item {
    flex: 1 1 calc(25% - 23px);
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--dark);
}

.value-item h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.thanks-container {
    text-align: center;
    padding: 100px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4941f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--dark);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid #e0e6ed;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.trust-badge svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

.problem-section {
    background: #fff9f0;
    border-left: 4px solid var(--secondary);
}

.insight-box {
    background: var(--primary);
    color: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
}

.insight-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.insight-box p {
    font-size: 18px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        padding: 15px 0;
        border-bottom: 1px solid #e0e6ed;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

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

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

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

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

    .service-image {
        width: 100%;
        height: 200px;
    }

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

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

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

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

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