:root {
    --primary-color: #7c3aed;
    --primary-dark: #6d28d9;
    --secondary-color: #a78bfa;
    --accent-color: #c4b5fd;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 76px;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
}

.hero-section h1 {
    color: var(--text-dark);
}

.hero-section .lead {
    color: var(--text-light);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

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

.card-title {
    color: var(--text-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding-left: 30px;
    position: relative;
}

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

.info-box {
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 100px 0 60px;
    margin-bottom: 0;
}

.page-header-small {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0 40px;
    margin-bottom: 0;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.process-step {
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.1);
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.icon-box {
    font-size: 2rem;
    min-width: 50px;
}

.contact-reasons {
    list-style: none;
    padding: 0;
}

.contact-reasons li {
    padding: 8px 0 8px 30px;
    position: relative;
}

.contact-reasons li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-card {
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
    font-weight: bold;
}

.contact-box {
    background: var(--bg-light);
    border: 2px solid var(--accent-color);
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.legal-content h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

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

.legal-content ul {
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 10px 0;
}

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

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

.cookie-banner a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-banner .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.cookie-banner .btn-outline-light {
    color: var(--white);
    border-color: var(--white);
    font-weight: 600;
}

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

footer {
    margin-top: 80px;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header-small {
        padding: 70px 0 30px;
    }
    
    body {
        padding-top: 66px;
    }
}
