/* Serving Standards - Modern Responsive Style */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: #f8f5f0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #991111;
    color: #FDE7C2;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.tagline {
    font-style: italic;
    opacity: 0.9;
}

nav a {
    color: #FDE7C2;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover { text-decoration: underline; }

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(153,17,17,0.85), rgba(153,17,17,0.85)), url('images/hero-bg.jpg') center/cover;
    color: white;
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.btn-primary {
    background: #FFA405;
    color: #991111;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #FDE7C2;
    transform: translateY(-2px);
}

.demo {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.controls {
    margin-bottom: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background: #991111;
    color: #FDE7C2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step {
    background: #f8f5f0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    .hero h2 { font-size: 2.2rem; }
    nav { margin-top: 15px; }
    nav a { margin: 0 10px 10px 0; }
}