/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Wrapper - Full screen background with restaurant image */
.hero-wrapper {
  position: relative;
  min-height: 70vh;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center center / cover no-repeat;
  background-attachment: scroll;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* Header - Island Style */
.header {
  position: relative;
  z-index: 100;
  padding: 20px 20px 0;
}

.header.island-style {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
}

.header.island-style .container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 10px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo h1 {
  font-size: 1.5rem;
  color: #192F01;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
  padding: 5px;
}

.header.island-style .logo-img {
  height: 60px;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #ff6b6b;
}

.btn-primary {
  background-color: #F0C38E;
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #E0B37E;
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 2;
  color: white;
  padding: 180px 0 80px;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 1rem;
}

.search-input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
}

.btn-search {
  background-color: #F0C38E;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-search:hover {
  background-color: #E0B37E;
}

/* Stats Section */
.stats {
  background-color: white;
  padding: 3rem 0;
}

.stats .container {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  font-size: 1.1rem;
}

/* Restaurant Listings */
.restaurants {
  padding: 4rem 0;
}

.restaurants h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(211px, 1fr));
  gap: 1.32rem;
}

.restaurant-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.restaurant-card:hover {
  transform: translateY(-3.3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.restaurant-image {
  position: relative;
  height: 132px;
  overflow: hidden;
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.items-badge {
  position: absolute;
  top: 7px;
  right: 7px;
  background-color: #ff6b6b;
  color: white;
  padding: 0.33rem 0.66rem;
  border-radius: 13px;
  font-weight: bold;
  font-size: 0.59rem;
}

.restaurant-info {
  padding: 1rem;
}

.restaurant-info h3 {
  font-size: 1.21rem;
  margin-bottom: 0.33rem;
  color: #333;
}

.cuisine {
  color: #666;
  font-size: 0.59rem;
  margin-bottom: 0.53rem;
}

.rating-distance {
  display: flex;
  gap: 0.66rem;
  margin-bottom: 0.53rem;
  font-size: 0.59rem;
}

.rating, .distance {
  color: #555;
}

.pickup-time {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.discounted-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b6b;
}

.savings {
  background-color: #4caf50;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* How It Works Section */
.how-it-works {
  background-color: white;
  padding: 4rem 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.step p {
  color: #666;
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #ff6b6b;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #bbb;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #bbb;
}

/* Restaurant Detail Page */
.restaurant-detail {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

.back-link {
  display: inline-block;
  color: #667eea;
  margin-bottom: 2rem;
  font-weight: 500;
  transition: color 0.3s;
}

.back-link:hover {
  color: #764ba2;
}

.detail-content {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.detail-image {
  height: 100%;
  min-height: 400px;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  padding: 2rem;
}

.detail-info h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.cuisine-detail {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.detail-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-label {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.pickup-info-box, .description-box {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.pickup-info-box h3, .description-box h3 {
  margin-bottom: 0.8rem;
  color: #333;
}

.pickup-time-detail {
  font-size: 1.2rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.pickup-note, .surprise-note {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.price-box {
  background-color: #fff3cd;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.price-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.price-detail .label {
  color: #666;
  font-weight: 500;
}

.original-price-detail {
  text-decoration: line-through;
  color: #999;
  font-size: 1.1rem;
}

.discounted-price-detail {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6b6b;
}

.savings-detail {
  background-color: #4caf50;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  margin-top: 0.5rem;
}

.btn-reserve {
  width: 100%;
  background-color: #ff6b6b;
  color: white;
  border: none;
  padding: 1.2rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-reserve:hover {
  background-color: #ff5252;
}

.info-note {
  background-color: #e3f2fd;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  text-align: center;
  color: #1976d2;
}

.additional-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  margin-bottom: 1rem;
  color: #333;
}

.info-card ul {
  list-style: none;
}

.info-card ul li {
  padding: 0.5rem 0;
  color: #666;
  border-bottom: 1px solid #eee;
}

.info-card ul li:last-child {
  border-bottom: none;
}

.info-card .link {
  color: #667eea;
  font-weight: 500;
  display: inline-block;
  margin-top: 0.5rem;
}

.info-card .link:hover {
  color: #764ba2;
}

/* Contact Section */
.contact-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3,
.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #10b981;
}

.info-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.required {
  color: #dc2626;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10b981;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background-color: #10b981;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #059669;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  display: block;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  display: block;
}

/* Help Section */
.help-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
  min-height: calc(100vh - 200px);
}

.help-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.help-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.help-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.help-sidebar {
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.help-sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.help-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.help-nav-link {
  padding: 0.75rem 1rem;
  color: #666;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.help-nav-link:hover {
  background-color: #f0fdf4;
  color: #10b981;
  padding-left: 1.25rem;
}

.help-main {
  background-color: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.help-article {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #f0f0f0;
}

.help-article:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

.help-article h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #10b981;
}

.help-article h3 {
  font-size: 1.4rem;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.help-article h4 {
  font-size: 1.1rem;
  color: #10b981;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.help-article p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.help-article ul,
.help-article ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.help-article li {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.help-article ul li {
  list-style-type: disc;
}

.help-article ol li {
  list-style-type: decimal;
}

.help-article ul ul,
.help-article ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.help-note {
  background-color: #dbeafe;
  border-left: 4px solid #3b82f6;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.help-note strong {
  color: #1e40af;
}

.help-note ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.help-warning {
  background-color: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.help-warning strong {
  color: #92400e;
}

.help-warning ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.help-cta {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.help-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.help-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.help-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-help-primary,
.btn-help-secondary {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-help-primary {
  background-color: white;
  color: #10b981;
}

.btn-help-primary:hover {
  background-color: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-help-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-help-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #333;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-align: left;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #10b981;
  min-width: 30px;
  text-align: center;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-wrapper {
    min-height: 60vh;
  }

  .header.island-style .container {
    border-radius: 20px;
    padding: 8px 15px;
    margin: 10px;
  }

  .header.island-style .logo-img {
    height: 45px;
  }

  .hero {
    padding: 140px 0 60px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .search-box {
    flex-direction: column;
  }

  .stats .container {
    flex-direction: column;
    gap: 2rem;
  }

  .restaurant-grid {
    grid-template-columns: 1fr;
  }

  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-image {
    min-height: 250px;
  }

  .nav {
    gap: 1rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  .help-content {
    grid-template-columns: 1fr;
  }

  .help-sidebar {
    position: static;
    margin-bottom: 2rem;
  }

  .help-main {
    padding: 1.5rem;
  }

  .help-article h2 {
    font-size: 1.5rem;
  }

  .help-article h3 {
    font-size: 1.2rem;
  }

  .help-cta {
    padding: 2rem 1.5rem;
  }

  .help-cta h2 {
    font-size: 1.5rem;
  }

  .help-cta-buttons {
    flex-direction: column;
  }
}

/* Legal Pages (Terms & Privacy) */
.legal-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid #10b981;
}

.legal-updated {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.legal-intro {
  background-color: #f0f9ff;
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.legal-intro p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

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

.legal-intro strong {
  color: #10b981;
}

.legal-article {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.legal-article:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-article h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.legal-article h3 {
  font-size: 1.4rem;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-article h4 {
  font-size: 1.1rem;
  color: #10b981;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-article p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-article ul,
.legal-article ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-article li {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.legal-article ul li {
  list-style-type: disc;
}

.legal-article ol li {
  list-style-type: decimal;
}

.legal-article ul ul,
.legal-article ol ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.legal-article strong {
  color: #333;
  font-weight: 600;
}

.legal-article a {
  color: #10b981;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-article a:hover {
  color: #059669;
  text-decoration: underline;
}

.contact-info {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.contact-info li {
  margin-bottom: 1rem;
  padding-left: 0;
}

.contact-info li:last-child {
  margin-bottom: 0;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 3px solid #10b981;
  background-color: #f0f9ff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.legal-footer p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

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

.legal-footer strong {
  color: #10b981;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
  .legal-section {
    padding: 2rem 0;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-article h2 {
    font-size: 1.5rem;
  }

  .legal-article h3 {
    font-size: 1.2rem;
  }

  .legal-article ul,
  .legal-article ol {
    margin-left: 1rem;
  }

  .legal-intro {
    padding: 1rem;
  }

  .legal-footer {
    padding: 1.5rem;
  }
}
