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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #F8FAF9 0%, #E8F5F0 100%);
    color: #1A3D2E;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-gradient {
    background: linear-gradient(135deg, #2D5F4D 0%, #1A3D2E 100%);
}

.accent-gradient {
    background: linear-gradient(135deg, #4A9A7B 0%, #2D5F4D 100%);
}

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

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 95, 77, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #E8A547 0%, #D68B2F 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 165, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 165, 71, 0.4);
}

.feature-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 10px rgba(45, 95, 77, 0.2));
}

.ingredient-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ingredient-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(45, 95, 77, 0.2);
}

.testimonial-card {
    background: white;
    border-left: 4px solid #E8A547;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-left-width: 8px;
    box-shadow: 0 10px 30px rgba(45, 95, 77, 0.1);
}

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

.navigation {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(26, 61, 46, 0.08);
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 48px 0;
    }
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #2D5F4D 0%, #4A9A7B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

input,
select {
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    outline: none;
    border-color: #4A9A7B;
    box-shadow: 0 0 0 3px rgba(74, 154, 123, 0.1);
}
