:root {
    --color-primary: #1e3a5f;
    --color-primary-light: #2c5282;
    --color-secondary: #e67e22;
    --color-accent: #27ae60;
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-gray-light: #e9ecef;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

.container.narrow {
    max-width: 800px;
}

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

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--color-primary);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.main-nav {
    background: var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

.nav-disclosure {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: var(--transition);
}

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

.nav-links a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30,58,95,0.9) 0%, rgba(26,26,46,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: var(--color-secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition);
}

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

.intro-story {
    padding: 5rem 0;
    background: white;
}

.intro-story h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.intro-story p {
    font-size: 1.125rem;
    color: var(--color-gray);
}

.problem-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.problem-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-list {
    list-style: none;
    margin-top: 1.5rem;
}

.problem-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.problem-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.insight-section {
    padding: 5rem 0;
    background: var(--color-primary);
}

.insight-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.insight-box h2 {
    color: var(--color-accent);
}

.insight-box p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 0;
}

.trust-section {
    padding: 5rem 0;
    background: white;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: var(--color-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    flex: 1 1 300px;
    max-width: 380px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-secondary);
}

.testimonial-card blockquote p {
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
}

.testimonial-card footer strong {
    color: var(--color-dark);
}

.testimonial-card footer span {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.method-section {
    padding: 5rem 0;
    background: var(--color-gray-light);
}

.method-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.method-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.method-content {
    flex: 1;
}

.method-content p {
    font-size: 1.1rem;
    color: var(--color-gray);
}

.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-item {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.services-preview {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-gray-light) 0%, white 100%);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1 1 260px;
    max-width: 280px;
    transition: transform var(--transition);
    position: relative;
}

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

.service-card.featured {
    border: 3px solid var(--color-secondary);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.service-image {
    height: 180px;
    overflow: hidden;
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-section {
    padding: 5rem 0;
    background: var(--color-primary);
}

.cta-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.cta-box > p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.inline-form {
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

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

.inline-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.references-section {
    padding: 3rem 0;
    background: var(--color-gray-light);
}

.references-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.references-list {
    list-style: none;
    font-size: 0.875rem;
    color: var(--color-gray);
}

.references-list li {
    margin-bottom: 0.5rem;
}

.main-footer {
    background: var(--color-dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    flex: 2 1 300px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1 1 180px;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-secondary);
}

.footer-contact address {
    font-style: normal;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact address p {
    margin-bottom: 0.25rem;
}

.footer-disclaimer {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

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

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

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

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    font-size: 0.9rem;
}

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

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

.btn-cookie-accept {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: background var(--transition);
}

.btn-cookie-accept:hover {
    background: #219a52;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition);
}

.btn-cookie-reject:hover {
    border-color: white;
}

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

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

.legal-content {
    padding: 4rem 0;
    background: white;
}

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

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

.legal-content p,
.legal-content ul,
.legal-content ol {
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--color-gray);
    font-size: 1.05rem;
}

.values-section {
    padding: 4rem 0;
    background: var(--color-gray-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    flex: 1 1 280px;
    max-width: 350px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--color-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.services-full {
    padding: 4rem 0;
    background: white;
}

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

.service-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
    background: white;
    border: 1px solid var(--color-gray-light);
}

.service-item-image {
    flex: 0 0 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-item-content p {
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.service-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-detail h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: var(--color-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form-section {
    flex: 1;
    background: var(--color-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.contact-form-section h2 {
    margin-bottom: 1.5rem;
}

.thanks-section {
    padding: 6rem 0;
    text-align: center;
    background: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.thanks-content h1 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .problem-grid,
    .method-layout,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

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

    .service-item-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        order: 4;
        margin-top: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
    }

    .nav-disclosure {
        order: 3;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
}
