:root {
    --primary-color: #ffc107;
    --secondary-color: #333333;
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

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

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

.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);
    color: var(--text-dark);
}

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-section h1 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 70px;
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--shadow);
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.benefits-list li {
    padding-left: 1.5rem;
    position: relative;
}

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

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

.service-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1.2;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0a800 100%);
    color: var(--text-dark);
}

.cta-section h2 {
    color: var(--secondary-color);
}

.footer {
    margin-top: 3rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px var(--shadow);
    display: none;
}

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

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.contact-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.value-card,
.benefit-card {
    transition: transform 0.3s ease;
}

.value-card:hover,
.benefit-card:hover {
    transform: translateX(5px);
}

.policy-content h2 {
    color: var(--secondary-color);
    margin-top: 2rem;
}

.policy-content h5 {
    color: var(--secondary-color);
}

.policy-content ul {
    margin-left: 1.5rem;
}

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

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .cookie-banner .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
    
    .page-header {
        margin-top: 60px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-text {
        font-size: 2rem;
    }
}
