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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    color: #1c3144 !important;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #555555 !important;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #1c3144 !important;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.2s;
}

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

.btn-success:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.2);
}

.btn-outline-secondary {
    color: #555555;
    border-color: #555555;
    background-color: transparent;
}

.btn-outline-secondary:hover {
    background-color: #f5f5f5;
    border-color: #1c3144;
    color: #1c3144;
}

.badge {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 500;
}

.badge-info {
    background-color: #17a2b8;
    color: white;
}

.badge-warning {
    background-color: #ffc107;
    color: #333;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
}

.badge-success {
    background-color: #28a745;
    color: white;
}

.badge-dark {
    background-color: #1c3144;
    color: white;
}

.badge-secondary {
    background-color: #6c757d;
    color: white;
}

.product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.info-card {
    transition: all 0.2s;
    border-radius: 14px;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

h1, h2, h3, h4, h5, h6 {
    color: #1c3144;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    line-height: 1.2;
}

h3 {
    font-size: 28px;
    line-height: 1.3;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lead {
    font-size: 18px;
    color: #555555;
    font-weight: 400;
}

.text-secondary {
    color: #666666 !important;
}

.text-muted {
    color: #999999 !important;
}

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

.text-primary {
    color: #1c3144 !important;
}

a {
    color: #1c3144;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #28a745;
    text-decoration: underline;
}

.form-control {
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-check-input {
    border: 1px solid #dddddd;
    border-radius: 4px;
    width: 18px;
    height: 18px;
    transition: all 0.2s;
}

.form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.table {
    border-collapse: collapse;
}

.table th {
    background-color: #f8f9fa;
    color: #1c3144;
    font-weight: 700;
    border-bottom: 2px solid #e5e5e5;
    padding: 16px;
}

.table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.table tbody tr:hover {
    background-color: #f9f9f9;
}

footer {
    background-color: #f8f9fa;
    margin-top: 60px;
}

footer a {
    color: #666666;
}

footer a:hover {
    color: #28a745;
    text-decoration: none;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5 !important;
}

.border-top {
    border-top: 1px solid #e5e5e5 !important;
}

section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.bg-light {
    background-color: #f9f9f9 !important;
}

.container {
    max-width: 1200px;
}

ul {
    margin-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

ol {
    margin-left: 20px;
}

ol li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    .lead {
        font-size: 16px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .btn-lg {
        padding: 12px 24px;
    }

    #cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .display-4 {
        font-size: 32px;
    }

    .row {
        margin-left: -8px;
        margin-right: -8px;
    }

    [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }

    section {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

button:focus {
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #218838;
}

.transition-all {
    transition: all 0.3s ease;
}

.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

.shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}
