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

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2c5f8d;
    --accent-color: #4a9fd8;
    --dark-bg: #0f1f2e;
    --light-bg: #f4f7fa;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #6b7280;
    --border-color: #d1d5db;
    --success-color: #10b981;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.main-nav {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

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

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(44, 95, 141, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #3a8bc8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper.narrow {
    max-width: 800px;
}

.content-wrapper.wide {
    max-width: 1400px;
}

.content-wrapper.centered {
    text-align: center;
}

.intro-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-gray);
}

.services-preview {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: var(--spacing-md);
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-bg);
}

.card-content {
    padding: 1.75rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-centered {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: var(--spacing-xl) 0;
}

.dark-bg {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.light-bg {
    background-color: var(--light-bg);
}

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

.split-left,
.split-right {
    flex: 1;
}

.image-block {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
    border-radius: 8px;
}

.trust-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

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

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.btn-light {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.testimonials-section h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-block {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-block blockquote {
    font-style: normal;
}

.testimonial-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-style: normal;
    color: var(--text-gray);
    font-weight: 600;
}

.form-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-bg);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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: var(--accent-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.info-section {
    padding: var(--spacing-lg) 0;
}

.disclaimer {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.page-header h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detailed {
    padding: var(--spacing-xl) 0;
}

.service-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1.2;
}

.service-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.price-display {
    margin-top: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.pricing-note {
    padding: var(--spacing-lg) 0;
    background-color: var(--light-bg);
}

.pricing-note h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-note p {
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-section {
    padding: var(--spacing-xl) 0;
}

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-light-large {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-light-large:hover {
    background-color: var(--light-bg);
    transform: translateY(-3px);
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.about-intro {
    padding: var(--spacing-xl) 0;
}

.about-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.values-section {
    padding: var(--spacing-xl) 0;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.team-section {
    padding: var(--spacing-xl) 0;
}

.team-section h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-section p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.approach-section {
    padding: var(--spacing-xl) 0;
}

.approach-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.approach-section p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.contact-info-section {
    padding: var(--spacing-xl) 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1.2;
}

.contact-visual {
    flex: 1;
}

.visual-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.note-small {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.contact-cta-section {
    padding: var(--spacing-xl) 0;
}

.contact-cta-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-cta-section p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.thanks-section {
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
}

.thanks-details p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.legal-content {
    padding: var(--spacing-xl) 0;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.update-date {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table thead {
    background-color: var(--light-bg);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
    }

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

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

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

    .split {
        flex-direction: column;
    }

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

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

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

    .visual-image {
        height: 300px;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}