/* ============================================
   GIOIA INNEB - PROFESSIONAL CORPORATE DESIGN
   Professional Corporate Aesthetic
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY - PROFESSIONAL CORPORATE STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a252f;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #4a5568;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* ============================================
   HEADER - PROFESSIONAL CORPORATE
   ============================================ */

header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #e2e8f0;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  padding: 10px 16px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.main-nav a:hover {
  color: #A63527;
  background-color: #f7fafc;
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #2c3e50;
  background-color: #f7fafc;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #edf2f7;
  color: #A63527;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: #2c3e50;
  background-color: #f7fafc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #edf2f7;
  color: #A63527;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  padding: 14px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f7fafc;
  color: #A63527;
}

/* ============================================
   BUTTONS - PROFESSIONAL CORPORATE STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #A63527;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(166, 53, 39, 0.2);
}

.btn-primary:hover {
  background-color: #8B2D1F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 53, 39, 0.3);
}

.btn-secondary {
  background-color: #ffffff;
  color: #A63527;
  border: 2px solid #A63527;
}

.btn-secondary:hover {
  background-color: #A63527;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 53, 39, 0.2);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ============================================
   HERO SECTION - PROFESSIONAL CORPORATE
   ============================================ */

.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.02)" width="50" height="50"/></svg>');
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ============================================
   PAGE HERO - CONSISTENT STYLING
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  color: #e2e8f0;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.benefits-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* ============================================
   CONTENT SECTIONS - FLEXBOX LAYOUTS
   ============================================ */

.introduction,
.brand-story,
.location,
.response-info,
.confirmation-details,
.acceptance {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 40px;
  text-align: center;
}

/* ============================================
   CARD GRIDS - FLEXBOX ONLY
   ============================================ */

.services-grid,
.benefits-grid,
.testimonials-grid,
.features-grid,
.values-grid,
.stats-grid,
.contact-grid,
.actions-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card,
.benefit-card,
.testimonial-card,
.feature-card,
.value-card,
.contact-item,
.action-card,
.link-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 280px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.benefit-card:hover,
.action-card:hover,
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #A63527;
}

.service-card h3,
.benefit-card h3 {
  color: #A63527;
  margin-bottom: 16px;
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 16px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background-color: #f8fafc;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #ffffff;
  border-left: 4px solid #A63527;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2c3e50;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: #64748b;
  font-style: normal;
  font-size: 14px;
}

/* ============================================
   RECIPE & ARTICLE CARDS
   ============================================ */

.recipe-cards,
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.recipe-card,
.article-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  flex: 1 1 300px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.recipe-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.recipe-image-placeholder,
.article-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-card h3,
.article-card h3 {
  padding: 20px 20px 8px;
  color: #2c3e50;
}

.recipe-meta,
.post-meta {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #64748b;
}

.article-card p {
  padding: 0 20px 20px;
  color: #4a5568;
  font-size: 15px;
}

/* ============================================
   FILTERS - FLEXBOX LAYOUT
   ============================================ */

.recipe-filters,
.blog-categories {
  background-color: #f8fafc;
  padding: 32px 20px;
  margin-bottom: 40px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-buttons,
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.filter-btn,
.category-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.category-btn:hover,
.filter-btn.active,
.category-btn.active {
  background-color: #A63527;
  color: #ffffff;
  border-color: #A63527;
}

/* ============================================
   PRICING CARDS - FLEXBOX
   ============================================ */

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.pricing-card {
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px 32px;
  flex: 1 1 300px;
  max-width: 360px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #A63527;
  border-width: 3px;
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  background-color: #A63527;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card .price {
  font-size: 48px;
  color: #A63527;
  margin: 16px 0;
}

.pricing-card .price span {
  font-size: 18px;
  color: #64748b;
}

.savings {
  color: #2F5233;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-card ul {
  margin: 24px 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 24px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2F5233;
  font-weight: 700;
}

/* ============================================
   COURSE & CURRICULUM
   ============================================ */

.course-overview,
.curriculum {
  padding: 60px 20px;
  background-color: #ffffff;
}

.course-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: center;
  align-items: center;
}

.course-details span {
  background-color: #f8fafc;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  color: #2c3e50;
}

.price-highlight {
  background-color: #A63527;
  color: #ffffff;
  font-size: 24px;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.module {
  background-color: #f8fafc;
  border-left: 4px solid #A63527;
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.module:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.module h3 {
  color: #2c3e50;
  margin-bottom: 8px;
}

.module p {
  color: #64748b;
  font-size: 14px;
}

/* ============================================
   STEPS & HOW IT WORKS - FLEXBOX
   ============================================ */

.how-it-works,
.next-steps {
  padding: 60px 20px;
  background-color: #f8fafc;
}

.steps-grid,
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step,
.step-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px 24px;
  flex: 1 1 240px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #A63527;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3,
.step-item h3 {
  color: #2c3e50;
  margin-bottom: 12px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  padding: 60px 20px;
  background-color: #2c3e50;
  color: #ffffff;
  text-align: center;
}

.stats h2 {
  color: #ffffff;
}

.stats-grid {
  justify-content: center;
}

.stat {
  flex: 1 1 200px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #A63527;
}

.stat .label {
  font-size: 16px;
  color: #e2e8f0;
}

/* ============================================
   FEATURED CONTENT
   ============================================ */

.featured-post {
  padding: 60px 20px;
  background-color: #f8fafc;
}

.featured-article {
  background-color: #ffffff;
  border: 2px solid #A63527;
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.badge {
  display: inline-block;
  background-color: #A63527;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */

.newsletter-signup {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-content h2 {
  color: #ffffff;
}

.newsletter-content p {
  color: #e2e8f0;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 15px;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #A63527;
  box-shadow: 0 0 0 3px rgba(166, 53, 39, 0.1);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label a {
  color: #A63527;
  text-decoration: underline;
}

/* ============================================
   MAP & LOCATION
   ============================================ */

.map-section {
  padding: 60px 20px;
  background-color: #f8fafc;
}

.map-placeholder {
  background-color: #e2e8f0;
  border: 2px solid #cbd5e0;
  border-radius: 12px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.map-placeholder p {
  color: #64748b;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  padding: 60px 20px;
  background-color: #ffffff;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: #2c3e50;
  margin-bottom: 16px;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  color: #4a5568;
  line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
  margin-left: 24px;
  margin-top: 16px;
}

.legal-section li {
  margin-bottom: 12px;
  padding-left: 8px;
}

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

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

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #e2e8f0;
}

.cookie-table th {
  background-color: #f8fafc;
  font-weight: 600;
  color: #2c3e50;
}

/* ============================================
   COOKIE PREFERENCES
   ============================================ */

.cookie-settings {
  padding: 60px 20px;
  background-color: #f8fafc;
}

.cookie-preferences {
  max-width: 700px;
  margin: 32px auto;
}

.preference-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
}

.preference-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
}

.preference-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.preference-item p {
  margin-top: 8px;
  margin-left: 32px;
  font-size: 14px;
  color: #64748b;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  padding: 80px 20px;
  background-color: #f8fafc;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2F5233;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.success-message {
  font-size: 20px;
  color: #2F5233;
  font-weight: 600;
}

/* ============================================
   CTA BANNERS
   ============================================ */

.cta-banner,
.cta-enrollment,
.cta-trial,
.cta-join,
.data-request,
.return-home,
.back-navigation {
  background: linear-gradient(135deg, #A63527 0%, #8B2D1F 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.cta-banner h2,
.cta-enrollment h2,
.cta-trial h2,
.cta-join h2,
.data-request h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-enrollment p,
.cta-trial p,
.cta-join p,
.data-request p,
.back-navigation p {
  color: #F4E4D7;
  margin-bottom: 32px;
  font-size: 18px;
}

.price-display {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin: 24px 0;
}

.guarantee {
  color: #F4E4D7;
  font-size: 14px;
  margin-top: 16px;
}

/* ============================================
   FOOTER - PROFESSIONAL CORPORATE
   ============================================ */

footer {
  background-color: #1a252f;
  color: #cbd5e0;
  padding: 60px 20px 24px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3,
.footer-section h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: #cbd5e0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #F4E4D7;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #2c3e50;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-legal a {
  color: #cbd5e0;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #F4E4D7;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 13px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a252f;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent-banner.active {
  transform: translateY(0);
}

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

.cookie-banner-text {
  flex: 1 1 300px;
}

.cookie-banner-text p {
  color: #e2e8f0;
  font-size: 14px;
  margin: 0;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* ============================================
   COOKIE MODAL
   ============================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #edf2f7;
  color: #A63527;
}

.cookie-modal h2 {
  color: #2c3e50;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-category h3 {
  color: #2c3e50;
  font-size: 18px;
  margin: 0;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background-color: #cbd5e0;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #2F5233;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (min-width: 768px) {
  /* Typography scaling */
  h1 { font-size: 56px; }
  h2 { font-size: 42px; }
  h3 { font-size: 28px; }
  
  /* Navigation */
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  /* Hero */
  .hero {
    padding: 120px 20px;
  }
  
  .hero h1 {
    font-size: 56px;
  }
  
  /* Cards - Responsive sizing */
  .service-card,
  .benefit-card,
  .feature-card {
    flex: 1 1 320px;
  }
  
  .recipe-card,
  .article-card {
    flex: 1 1 340px;
  }
  
  /* Newsletter form */
  .newsletter-form {
    flex-wrap: nowrap;
  }
  
  .email-input {
    flex: 1 1 auto;
  }
  
  /* Footer */
  .footer-content {
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 0 1 220px;
  }
}

@media (min-width: 1024px) {
  /* Container spacing */
  .container {
    padding: 0 40px;
  }
  
  /* Section padding */
  .section {
    padding: 80px 20px;
  }
  
  /* Cards - Desktop sizing */
  .testimonial-card {
    flex-direction: row;
    align-items: center;
  }
  
  /* Pricing cards */
  .pricing-card {
    flex: 0 1 340px;
  }
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

*:focus-visible {
  outline: 3px solid #A63527;
  outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 3px solid #A63527;
  outline-offset: 4px;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.benefit-card,
.recipe-card,
.article-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal,
  .cta-banner,
  .newsletter-signup {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ============================================
   END OF STYLES
   ============================================ */