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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

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

.min-vh-75 {
    min-height: 75vh;
}

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

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

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent.hidden {
    display: none;
}

.footer {
    margin-top: 80px;
}

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

.footer a:hover {
    color: #28a745 !important;
    text-decoration: underline;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    transform: translateY(-2px);
}

.text-success {
    color: #28a745 !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175);
}

.page-header {
    padding: 60px 0;
}

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

.legal-section h2 {
    color: #2c3e50;
    margin-top: 30px;
}

.legal-section h3 {
    color: #34495e;
}

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

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

.contact-form {
    background-color: #f8f9fa;
}

.contact-form .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 12px;
}

.contact-form .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.alert {
    border-radius: 8px;
}

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

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .cookie-consent .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cookie-consent .col-lg-4 {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .ml-2 {
        margin-left: 0 !important;
        margin-top: 10px;
    }
}
