/* Base Styles */
:root {
  --primary-color: #f9d71c;
  --primary-dark: #e8c200;
  --secondary-color: #4caf50;
  --secondary-dark: #388e3c;
  --text-color: #333333;
  --text-light: #666666;
  --background-light: #f9f9f9;
  --white: #ffffff;
  --gray-light: #eeeeee;
  --gray: #cccccc;
  --border-radius: 8px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-light);
}

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

a:hover {
  color: var(--secondary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  position: relative;
  padding: 0 20px;
}

.quote:before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  left: -15px;
  top: -20px;
  opacity: 0.3;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  font-size: 16px;
}

.btn:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

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

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

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

.btn-settings {
  background-color: var(--gray);
  color: var(--text-color);
}

.btn-reject {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--gray);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  border-radius: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  display: flex;
  margin-left: auto;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--secondary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(249, 215, 28, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
  padding: 100px 0;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.hero-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Benefits Section */
.benefits {
  background-color: var(--white);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.benefit-card {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 30px;
  color: var(--text-color);
}

.benefit-card h3 {
  margin-bottom: 15px;
}

/* Inspiration Box */
.inspiration {
  background-color: var(--gray-light);
}

.inspiration-box {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.inspiration-box h2 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.inspiration-box .quote {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.subscription-counter {
  margin-bottom: 20px;
}

.subscription-counter p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.subscription-counter strong {
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: var(--gray-light);
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 5px;
}

.inspiration-form {
  display: flex;
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.inspiration-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 16px;
}

.inspiration-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 20px;
}

/* Featured Posts */
.featured-posts {
  background-color: var(--white);
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 50px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.post-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-10px);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  color: var(--secondary-color);
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #292929;
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
  border-radius: 0;
}

.footer-info p {
  color: var(--gray);
  margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  color: var(--gray);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

.cookie-content {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-buttons .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.cookie-more {
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(249, 215, 28, 0.15) 0%, rgba(76, 175, 80, 0.15) 100%);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

/* Recipe Page Styles */
.recipe-main {
  background-color: var(--white);
}

.recipe-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.recipe-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.recipe-meta span {
  display: flex;
  align-items: center;
}

.recipe-meta i {
  margin-right: 8px;
  color: var(--primary-color);
}

.recipe-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.ingredients h3,
.instructions h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.ingredients ul {
  list-style: disc;
  padding-left: 20px;
}

.ingredients li,
.instructions li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.instructions ol {
  list-style: decimal;
  padding-left: 20px;
}

.recipe-benefits {
  background-color: rgba(76, 175, 80, 0.1);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 20px;
}

.recipe-benefits h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.recipe-collection {
  background-color: var(--background-light);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.recipe-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.recipe-card:hover {
  transform: translateY(-5px);
}

.recipe-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recipe-card-content {
  padding: 20px;
}

.recipe-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.recipe-time {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.recipe-time i {
  margin-right: 8px;
  color: var(--primary-color);
}

.recipe-expand {
  width: 100%;
}

.recipe-details {
  padding: 0 20px 20px;
  display: none;
}

.recipe-details h4 {
  margin: 15px 0 10px;
  color: var(--secondary-color);
}

.recipe-details ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.recipe-details li {
  margin-bottom: 5px;
  color: var(--text-light);
}

.recipe-tips {
  background-color: var(--white);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tip-card {
  text-align: center;
  padding: 30px;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.tip-icon i {
  font-size: 24px;
  color: var(--text-color);
}

.tip-card h3 {
  margin-bottom: 15px;
}

/* Video Page Styles */
.video-featured {
  background-color: var(--white);
}

.video-featured .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-featured-info h2 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.video-meta span {
  display: flex;
  align-items: center;
}

.video-meta i {
  margin-right: 8px;
  color: var(--primary-color);
}

.video-collection {
  background-color: var(--background-light);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.video-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.video-info p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.video-testimonials {
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.testimonial-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-info h3 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.testimonial-info p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.testimonial-meta {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-meta span {
  display: flex;
  align-items: center;
}

.testimonial-meta i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* Blog Page Styles */
.blog-content {
  background-color: var(--white);
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 100%;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.blog-text {
  padding: 30px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 8px;
  color: var(--primary-color);
}

.blog-text h2 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.blog-text h3 {
  margin: 25px 0 10px;
  color: var(--text-color);
}

.blog-text p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-text .btn {
  margin-top: 15px;
}

/* Contact Page Styles */
.contact-section {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background-color: var(--background-light);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-info h2 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.contact-info > p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: var(--text-color);
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.business-hours h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.day {
  font-weight: 600;
}

.time {
  color: var(--text-light);
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-wrapper h2 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.contact-form-wrapper > p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  font-size: 16px;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox input {
  width: 20px;
  height: 20px;
}

.contact-form .btn {
  margin-top: 10px;
}

.map-section {
  background-color: var(--background-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-section {
  background-color: var(--white);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: var(--background-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.thank-you-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 500px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.thank-you-popup.show .popup-content {
  transform: scale(1);
}

.popup-content i {
  font-size: 60px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.popup-content h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.popup-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

/* About Page Styles */
.about-story {
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-content h2 {
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-content blockquote {
  background-color: rgba(249, 215, 28, 0.1);
  padding: 25px;
  border-left: 4px solid var(--primary-color);
  margin: 30px 0;
  font-style: italic;
}

.about-content blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
}

.our-mission {
  background-color: var(--background-light);
}

.mission-content h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

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

.mission-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.mission-item:hover {
  transform: translateY(-10px);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-icon i {
  font-size: 30px;
  color: var(--text-color);
}

.mission-item h3 {
  margin-bottom: 15px;
}

.team-section {
  background-color: var(--white);
}

.team-section h2 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-light);
  font-size: 1.1rem;
}

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

.team-card {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
}

.team-card h3 {
  margin: 20px 0 5px;
}

.team-card > p:first-of-type {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-card > p:last-of-type {
  padding: 0 20px 15px;
  color: var(--text-light);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0 0 20px;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  color: var(--secondary-color);
  transition: var(--transition);
}

.team-social a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.values-section {
  background-color: var(--background-light);
}

.values-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

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

.value-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 30px;
  color: var(--text-color);
}

.value-card h3 {
  margin-bottom: 15px;
}

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

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  max-width: 350px;
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-10px);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 20px;
}

.testimonial-content p:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--primary-color);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: var(--text-light);
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-image {
    justify-content: center;
    margin-top: 30px;
  }
  
  .recipe-spotlight,
  .video-featured .container,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .recipe-info {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    grid-template-columns: 1fr;
  }
  
  .testimonial-thumbnail {
    height: 250px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: var(--header-height);
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .inspiration-form {
    flex-direction: column;
  }
  
  .inspiration-form input,
  .inspiration-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .inspiration-form input {
    margin-bottom: 10px;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 250px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: a480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .benefit-card,
  .post-card,
  .recipe-card,
  .video-card,
  .mission-item,
  .team-card,
  .value-card,
  .testimonial {
    width: 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
