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

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

.navbar {
    padding: 1rem 0;
}

.brand-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d7a4f;
}

.navbar-light .navbar-nav .nav-link {
    color: #2d3748;
    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: #2d7a4f;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: #2d7a4f;
    border-color: #2d7a4f;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a4d2e;
    border-color: #1a4d2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 122, 79, 0.3);
}

.btn-outline-primary {
    color: #2d7a4f;
    border-color: #2d7a4f;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #2d7a4f;
    border-color: #2d7a4f;
    color: #ffffff;
}

.btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #2d7a4f;
}

.features-section {
    padding: 80px 0;
}

.feature-box {
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #1a4d2e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.products-preview {
    padding: 80px 0;
    background-color: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 3rem;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: #1a4d2e;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-card-full {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.product-card-full .product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: 700;
}

.info-section {
    padding: 80px 0;
}

.info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #2d7a4f 0%, #1a4d2e 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.info-box {
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #2d7a4f;
}

.info-box h3 {
    color: #1a4d2e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d7a4f 0%, #1a4d2e 100%);
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.products-section {
    padding: 60px 0;
}

.info-banner {
    padding: 60px 0;
    background: #f0fdf4;
}

.info-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 60px 0;
}

.contact-info-box {
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-info-box h5 {
    color: #1a4d2e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-form-box {
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.contact-form-box h3 {
    color: #1a4d2e;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: #2d7a4f;
    box-shadow: 0 0 0 0.2rem rgba(45, 122, 79, 0.15);
}

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

.thank-you-box {
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: #2d7a4f;
    background: #f0fdf4;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-weight: 700;
}

.thank-you-box h1 {
    color: #1a4d2e;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    margin-top: 2rem;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    color: #1a4d2e;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #2d7a4f;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: #2d7a4f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a4d2e;
}

.footer {
    background-color: #1a4d2e;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    color: #dcfce7;
    margin-bottom: 0;
}

.footer-legal-link {
    color: #dcfce7;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #ffffff;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a4d2e;
    color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-consent a {
    color: #dcfce7;
    text-decoration: underline;
}

.cookie-consent a:hover {
    color: #ffffff;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .footer-legal-link {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .cookie-consent .col-md-4 {
        margin-top: 1rem;
        text-align: left;
    }
}
