:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --secondary-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --white: #ffffff;
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

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

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

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

.hero-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
}

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
}

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

.feature-box {
    padding: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-card {
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
    height: 250px;
    object-fit: cover;
}

.product-card .card-title {
    font-weight: 600;
    color: var(--text-color);
}

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

.cta-section h2 {
    color: var(--white);
    font-weight: 700;
}

.cta-section .lead {
    color: var(--white);
}

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

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

.footer {
    margin-top: 50px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.page-header {
    background-color: var(--secondary-color);
}

.page-header h1 {
    font-weight: 700;
    color: var(--text-color);
}

.info-box {
    padding: 25px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    height: 100%;
}

.info-box h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

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

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

.contact-info-box {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
}

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

.benefits-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

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

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.thank-you-section {
    min-height: 400px;
    display: flex;
    align-items: center;
}

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

.success-icon {
    display: inline-block;
}

.step-icon {
    font-size: 2.5rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
}

.legal-section h3 {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 37, 41, 0.95);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

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

.cookie-banner p {
    margin: 0;
}

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

.cookie-banner .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

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

    .hero-section .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .product-card img {
        height: 200px;
    }

    .cookie-banner .btn {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-box h3 {
        font-size: 1.25rem;
    }
}
