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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
}

header {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(9, 132, 227, 0.25);
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.2);
}

.header-section {
    background: url('img2_fresh_ingredients.jpg') center/cover no-repeat;
    padding: 80px 2rem;
    position: relative;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 132, 227, 0.92), rgba(116, 185, 255, 0.92));
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    color: white;
}

.header-content h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
}

.cards-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.policy-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.policy-card h2 {
    color: #0984e3;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.policy-card h2::before {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #74b9ff, #0984e3);
    border-radius: 2px;
}

.policy-card > p {
    color: #555;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.sub-section {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.sub-section h3 {
    color: #0984e3;
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.sub-section p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    margin: 1rem 0;
}

.privacy-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.privacy-list li::before {
    content: "✓";
    color: #00b894;
    font-weight: bold;
    position: absolute;
    left: 0.3rem;
    top: 0.7rem;
}

.full-width-section {
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
    color: white;
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.full-width-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.full-width-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.full-width-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.data-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.data-type-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.data-type-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.data-type-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

footer {
    background: #2d3436;
    color: white;
    padding: 2.5rem 2rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: #b2bec3;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #74b9ff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .header-content h1 {
        font-size: 2rem;
    }
}
