/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #0ea5e9;
  --background-color: #ffffff;
  --surface-color: #f8fafc;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-color);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-wrap: balance;
}

h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
}

h2 {
  font-size: 2rem;
  color: var(--text-primary);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  text-wrap: pretty;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Header */
.header {
  background: var(--background-color);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

.nav a {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: white;
}

.btn-secondary {
  background: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background: #475569;
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--surface-color) 0%, var(--background-color) 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
  background: var(--surface-color);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Categories */
.categories {
  padding: 4rem 0;
}

.categories h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.category-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
}

.category-icon {
  margin-bottom: 1.5rem;
}

.category-card h3 {
  margin-bottom: 1rem;
}

.category-card p {
  margin-bottom: 1.5rem;
}

/* How It Works */
.how-it-works {
  background: var(--surface-color);
  padding: 4rem 0;
}

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

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

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.text-center {
  text-align: center;
}

/* Topics */
.topics {
  padding: 4rem 0;
}

.topics h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.topic-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.topic-card h3 {
  margin-bottom: 1rem;
}

.topic-card p {
  margin-bottom: 1.5rem;
}

/* Ingredients */
.ingredients {
  background: var(--surface-color);
  padding: 4rem 0;
}

.ingredients h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.ingredient-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.ingredient-card h3 {
  margin-bottom: 1rem;
}

.ingredient-card p {
  margin-bottom: 1.5rem;
}

/* Benefits */
.benefits {
  padding: 4rem 0;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.benefit-item {
  text-align: center;
}

.benefit-item .benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-item h3 {
  margin-bottom: 1rem;
}

/* Reviews */
.reviews {
  background: var(--surface-color);
  padding: 4rem 0;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.review-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-card p {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer strong {
  color: var(--text-primary);
}

.reviewer span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form-section {
  padding: 4rem 0;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* Safety Notice */
.safety-notice {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  padding: 2rem 0;
}

.notice-content {
  text-align: center;
}

.notice-content h3 {
  color: #92400e;
  margin-bottom: 0.5rem;
}

.notice-content p {
  color: #92400e;
  margin-bottom: 1rem;
}

/* Legal Pages Styles */
.legal-hero {
  background: var(--surface-color);
  padding: 3rem 0;
  text-align: center;
}

.legal-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.last-updated {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

.legal-content {
  padding: 4rem 0;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-document h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.legal-document h3 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.legal-document p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-document ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-document ul li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.legal-document strong {
  color: var(--text-primary);
  font-weight: 600;
}

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

.contact-info p {
  margin-bottom: 1rem;
}

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

.important-notice {
  background: #fef3c7;
  border: 2px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
}

.important-notice h2 {
  color: #92400e;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.important-notice p {
  color: #92400e;
  margin-bottom: 0;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

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

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

.footer-section p {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

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

.footer-disclaimer {
  border-top: 1px solid #475569;
  padding-top: 2rem;
  text-align: center;
}

.footer-disclaimer p {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-primary);
  color: white;
  padding: 1rem;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.cookie-content p {
  color: #cbd5e1;
  margin: 0;
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-actions a {
  color: #cbd5e1;
  text-decoration: underline;
}

.cookie-actions button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
}

/* Thank You Page Styles */
.thank-you-hero {
  background: var(--surface-color);
  padding: 4rem 0;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  color: var(--success-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Message Summary */
.message-summary {
  padding: 4rem 0;
}

.summary-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.summary-card h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.summary-details {
  display: grid;
  gap: 1.5rem;
}

.detail-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: start;
}

.detail-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.detail-item span {
  color: var(--text-secondary);
}

.message-item {
  grid-template-columns: 120px 1fr;
  align-items: start;
}

.message-content {
  background: var(--surface-color);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Next Steps */
.next-steps {
  background: var(--surface-color);
  padding: 4rem 0;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.step-item {
  text-align: center;
  background: var(--background-color);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-icon {
  margin-bottom: 1.5rem;
}

.step-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.step-item p {
  margin: 0;
}

/* Additional Resources */
.additional-resources {
  padding: 4rem 0;
  text-align: center;
}

.additional-resources h2 {
  margin-bottom: 1rem;
}

.additional-resources p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.resource-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Info Section */
.contact-info-section {
  background: var(--surface-color);
  padding: 4rem 0;
}

.contact-info-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--background-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info-card p {
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.contact-method {
  padding: 0.75rem;
  background: var(--surface-color);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.contact-method strong {
  color: var(--text-primary);
  margin-right: 0.5rem;
}

/* Contact Page Specific */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin: 0;
}

.contact-hours h3 {
  color: var(--primary-color);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-hours p {
  margin: 0;
}

.contact-form-container h2 {
  margin-bottom: 2rem;
}

/* About Page Specific */
.about-content {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  gap: 3rem;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.approach-points {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.point h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.content-section ul {
  padding-left: 1.5rem;
}

.content-section ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.cta-section {
  background: var(--surface-color);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
}

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

/* Product Pages Styles */
.category-hero {
  background: var(--surface-color);
  padding: 3rem 0;
}

.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--text-primary);
  font-weight: 500;
}

.category-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Product Categories Overview */
.product-categories {
  padding: 4rem 0;
}

.product-categories h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.category-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.category-overview-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.category-overview-card:hover {
  box-shadow: var(--shadow-md);
}

.category-overview-card .category-icon {
  margin-bottom: 2rem;
}

.category-overview-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.category-overview-card p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.category-features {
  margin-bottom: 2rem;
  text-align: left;
}

.category-features ul {
  list-style: none;
  padding: 0;
}

.category-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.category-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Products Grid */
.products-grid-section {
  padding: 4rem 0;
}

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

.product-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.product-info p {
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--surface-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--primary-color);
}

/* Category Info */
.category-info {
  background: var(--surface-color);
  padding: 4rem 0;
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-content h2 {
  margin-bottom: 2rem;
}

.info-content > p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

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

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-item p {
  margin: 0;
}

/* Product Benefits */
.product-benefits {
  background: var(--surface-color);
  padding: 4rem 0;
}

.product-benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.benefit-item {
  text-align: center;
}

.benefit-item .benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-item h3 {
  margin-bottom: 1rem;
}

/* Getting Started */
.getting-started {
  padding: 4rem 0;
  text-align: center;
}

.getting-started h2 {
  margin-bottom: 2rem;
}

.getting-started-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.getting-started-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    gap: 1rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .category-grid,
  .topics-grid,
  .ingredients-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }

  .category-overview {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    padding: 2rem;
  }

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

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

  .getting-started-actions {
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

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

  .summary-card {
    padding: 2rem;
  }

  .detail-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .message-item {
    grid-template-columns: 1fr;
  }

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

  .resource-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-details {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

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

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .category-card,
  .topic-card,
  .ingredient-card,
  .review-card {
    padding: 1.5rem;
  }

  .category-overview-card {
    padding: 1.5rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .category-hero h1 {
    font-size: 2rem;
  }

  .thank-you-hero {
    padding: 3rem 0;
  }

  .summary-card {
    padding: 1.5rem;
  }

  .step-item {
    padding: 1.5rem;
  }

  .contact-info-card {
    padding: 2rem;
  }
}
