@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');      
      
:root {
    --primary: #FF6B6B; /* Urgent red */
    --secondary: #4ECDC4; /* Trust teal */
    --dark: #292F36;
    --light: #F7FFF7;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('restaurant-hero.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}
.cta-button {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s;
}
.cta-button:hover {
    transform: scale(1.05);
}
.stat {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}
.comparison-table td, .comparison-table th {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}
.comparison-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
.countdown-timer {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

a:link {
  color: white;
  text-decoration: none; /* Remove underline */
}

a:visited {
  color: white;
}

a:hover {
  color: #CCCCCC;
  text-decoration: underline;
}

a:active {
  color: white;
}