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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    line-height: 1.7;
    background: #f0f2f5;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: #fff;
    padding: 40px 20px 25px;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.1rem;
    color: #93c5fd;
    margin-bottom: 18px;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 15px;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Main */
main {
    max-width: 860px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e8eaed;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card h2 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8eaed;
    transition: color 0.3s;
}

.card:hover h2 {
    color: #1a73e8;
}

.card h3 {
    font-size: 1.1rem;
    color: #475569;
    margin-top: 18px;
    margin-bottom: 10px;
}

.card p {
    margin-bottom: 12px;
    color: #4a5568;
}

.card p:last-child {
    margin-bottom: 0;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #4a5568;
}

ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: #1a73e8;
    border-radius: 50%;
}

/* Info grid */
.info-grid {
    display: flex;
    gap: 16px;
    margin: 18px 0;
}

.info-box {
    flex: 1;
    background: #f0f7ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #dbeafe;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26,115,232,0.15);
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.info-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a73e8;
}

/* Flavors */
.flavors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.flavor {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid #fcd34d;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

.flavor:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251,191,36,0.3);
}

/* Warning */
.warning {
    background: #fff7ed;
    border-left: 4px solid #f59e0b;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    color: #92400e;
    margin-top: 15px;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    margin-top: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: #2c3e50;
    color: #fff;
}

th, td {
    padding: 14px 18px;
    text-align: left;
}

th {
    font-weight: 600;
    font-size: 0.95rem;
}

tbody tr {
    border-bottom: 1px solid #e8eaed;
    transition: background 0.2s;
}

tbody tr:hover {
    background: #f0f7ff;
}

tbody tr:last-child {
    border-bottom: none;
}

td {
    color: #4a5568;
}

/* CTA card */
.cta {
    background: linear-gradient(135deg, #f0f7ff, #eef2ff);
    border: 1px solid #c7d2fe;
}

.cta p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #334155;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    color: #94a3b8;
    font-size: 14px;
    background: #1a252f;
}

/* Responsive */
@media (max-width: 600px) {
    header h1 { font-size: 1.5rem; }
    .hero { padding: 25px 20px; }
    .card { padding: 22px 18px; }
    .info-grid { flex-direction: column; }
    .flavors { justify-content: center; }
    nav a { margin: 0 8px; font-size: 14px; }
    th, td { padding: 10px 12px; font-size: 0.9rem; }
}
