:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #3b82f6;
    --background: #f8fafc;
    --surface: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a:hover {
    color: var(--primary-dark);
}

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

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

.ad-disclosure {
    background-color: var(--secondary);
    color: #94a3b8;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
}

header {
    background-color: var(--surface);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

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

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: #1e3a5f;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    color: var(--surface);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--primary);
    color: var(--surface);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

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

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

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

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

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

.section {
    padding: 5rem 0;
}

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

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

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

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

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

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

.section-dark .section-title p {
    color: #94a3b8;
}

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

.card {
    background-color: var(--surface);
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex: 1 1 300px;
    max-width: 380px;
}

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

.card-image {
    height: 200px;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

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

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

.card-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.features-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--surface);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.testimonial-card {
    background-color: var(--surface);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    flex: 1 1 350px;
    max-width: 400px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surface);
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--secondary);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--surface);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

.form-container {
    background-color: var(--surface);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

footer {
    background-color: var(--secondary);
    color: #94a3b8;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

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

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

.footer-col h4 {
    color: var(--surface);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-col ul a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

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

.footer-col p {
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #94a3b8;
}

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

.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a5f 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--surface);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.content-wrapper h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--secondary);
}

.content-wrapper p {
    margin-bottom: 1rem;
    color: var(--text);
}

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

.content-wrapper ul li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

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

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

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surface);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

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

.contact-form-wrapper {
    flex: 1 1 400px;
}

.about-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

.about-image {
    flex: 1 1 400px;
    background-color: #e2e8f0;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 350px;
}

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

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

.value-card {
    flex: 1 1 250px;
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

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

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-intro p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.service-detail-card {
    background-color: var(--surface);
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.service-detail-header {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.service-detail-image {
    flex: 0 0 250px;
    height: 180px;
    background-color: #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
}

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

.service-detail-info {
    flex: 1 1 300px;
}

.service-detail-info h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.service-detail-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-detail-features {
    background-color: var(--background);
    padding: 1.5rem 2rem;
}

.service-detail-features ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.service-detail-features li {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.9rem;
}

.service-detail-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--surface);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary);
    color: var(--surface);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-text {
    flex: 1 1 400px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.cookie-text a {
    color: var(--accent);
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

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

.cookie-reject {
    background-color: transparent;
    border: 1px solid #475569;
    color: #94a3b8;
}

.cookie-reject:hover {
    background-color: #334155;
}

.disclaimer {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-size: 0.875rem;
    color: #92400e;
}

.disclaimer-footer {
    background-color: #1e293b;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    border-top: 1px solid #334155;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 1rem;
        border-bottom: 1px solid var(--border);
    }

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

    .hero-content {
        padding: 2rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

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

    .footer-links {
        justify-content: center;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-intro {
        flex-direction: column-reverse;
    }

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

    .service-detail-header {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
}
