:root {
    --primary: #6B46C1;
    --primary-dark: #3D2E7F;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
}

* {
    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;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

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

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

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

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

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

.hero-section {
    min-height: 500px;
    padding: 80px 0;
}

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

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

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.border-left-primary {
    border-left: 4px solid var(--primary);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar {
    border-bottom: 1px solid var(--border-color);
}

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

.nav-link:hover {
    color: var(--primary) !important;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

a.text-white-50:hover {
    color: white;
}

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

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

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-banner a {
    color: var(--primary);
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    h1 {
        font-size: 1.75rem;
    }

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

    .card {
        margin-bottom: 20px;
    }

    .cookie-banner {
        padding: 15px 0;
    }

    .cookie-banner .container {
        flex-direction: column;
    }

    .cookie-banner .d-flex {
        flex-direction: column;
    }

    .cookie-banner p {
        margin-bottom: 15px;
    }

    .cookie-banner > div > div {
        display: flex;
        flex-direction: column;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

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

    h2 {
        font-size: 1.15rem;
    }

    .hero-section {
        padding: 30px 0;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    footer {
        font-size: 0.9rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}
