/* ---------- Global Page Layout ---------- */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    padding: 40px 20px;
    line-height: 1.6;
    color: #333;
    background-color: #f3f5f6;
}

/* ---------- Main Content Container ---------- */

.container {
    max-width: 720px;
    margin: auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* ---------- Headings ---------- */

h1 {
    color: #2c7a7b;
    margin-bottom: 8px;
}

h2 {
    margin-top: 32px;
    color: #1f4f50;
}

/* ---------- Subtitle ---------- */

.subtitle {
    color: #6b7a7a;
    margin-top: -4px;
    margin-bottom: 22px;
    font-size: 15px;
}

/* ---------- Paragraphs ---------- */

p {
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ---------- Lists ---------- */

ul {
    padding-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 6px;
}

/* ---------- Links ---------- */

a {
    color: #2c7a7b;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* ---------- Back to Homepage Link ---------- */

.backlink {
    margin-bottom: 20px;
    font-size: 14px;
}

/* ---------- Article Image ---------- */

.food-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin: 24px 0;
}

/* ---------- Quick Info Table ---------- */

.quick-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.quick-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e6e6e6;
}

/* ---------- CTA Section ---------- */

.cta {
    background: #e8f4f4;
    padding: 22px;
    border-radius: 8px;
    margin-top: 36px;
}

.cta h2 {
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background: #2c7a7b;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
}

.cta-button:hover {
    background: #256868;
}

/* ---------- Related Links ---------- */

.related-links ul {
    margin-top: 10px;
}

.faq-section {
border-top: 1px solid #e5e7eb;
padding-top: 20px;
margin-top: 40px;
}

/* ---------- Mobile Optimization ---------- */

@media (max-width: 640px) {

    body {
        padding: 20px 12px;
    }

    .container {
        padding: 24px;
    }

    .food-image {
        height: 220px;
    }

}
