body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #2c3e50;
    padding-top: 70px;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #f39c12 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #f39c12;
}

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

.btn-primary {
    background-color: #f39c12;
    border-color: #f39c12;
    font-weight: 600;
    padding: 12px 30px;
}

.btn-primary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

.btn-outline-primary {
    color: #f39c12;
    border-color: #f39c12;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #fff;
}

.icon-box {
    font-size: 3rem;
    color: #f39c12;
}

.icon-box-large {
    font-size: 5rem;
    color: #27ae60;
}

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

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

.card-title {
    color: #2c3e50;
}

.why-section,
.services-section {
    background-color: #ffffff;
}

.benefits-section,
.who-section {
    background-color: #f8f9fa;
}

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

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

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.who-card {
    transition: transform 0.3s ease;
}

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

.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    border-left: 4px solid #f39c12;
}

.cta-section {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

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

.footer {
    margin-top: 50px;
}

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

.footer a:hover {
    color: #f39c12 !important;
}

.contact-form-card {
    border: 1px solid #dee2e6;
}

.contact-info-item {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card {
    transition: transform 0.3s ease;
    border-left: 4px solid #f39c12;
}

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

.thank-you-card {
    border: 2px solid #27ae60;
}

.step-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

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

.policy-text {
    line-height: 1.8;
}

.policy-text h2 {
    color: #2c3e50;
    margin-top: 30px;
}

.policy-text h4 {
    color: #34495e;
}

.policy-text ul {
    margin-bottom: 20px;
}

.policy-text ul li {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: 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: #f39c12;
    text-decoration: underline;
}

.cookie-banner .btn-light {
    background-color: #f39c12;
    border-color: #f39c12;
    color: white;
}

.cookie-banner .btn-light:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

.cookie-banner .btn-outline-light:hover {
    background-color: white;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .icon-box {
        font-size: 2.5rem;
    }
    
    .icon-box-large {
        font-size: 4rem;
    }
    
    .cookie-banner .btn {
        margin-top: 10px;
        width: 100%;
    }
}
