@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #f07e13; /* Orange from the Eatcmart design */
  --text-dark: #1f2937;
  --text-gray: #4b5563;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --header-bg: #111827; /* Dark background for header */
  --footer-bg: #1f2937; /* Dark background for footer */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header Styles */
header {
  background-color: var(--header-bg);
  color: var(--bg-white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--bg-white);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--bg-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--primary-color);
}

/* Main Content Styles */
main {
  flex: 1;
  padding: 4rem 0;
}

.document-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 3rem 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-gray);
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.contact-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.contact-info p {
  margin-bottom: 0;
  color: var(--text-dark);
  font-weight: 500;
}

/* CTA Footer Styles */
.cta-section {
  background-color: var(--footer-bg);
  background-image: linear-gradient(rgba(31, 41, 55, 0.9), rgba(31, 41, 55, 0.9)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(240, 126, 19, 0.2);
}

.btn:hover {
  background-color: #d96f0e;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 6px 8px rgba(240, 126, 19, 0.3);
}

.app-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.app-btn {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: 1px solid #333;
}

.app-btn:hover {
  background-color: #222;
  text-decoration: none;
}

.app-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.app-text-small {
  font-size: 0.65rem;
  display: block;
  line-height: 1;
}

.app-text-large {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

/* Footer bottom */
footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .document-container {
    padding: 2rem;
  }
  
  nav {
    display: none;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
}
