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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.header {
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #333;
}

.contact-btn {
  background: #4a5568 !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.contact-btn:hover {
  background: #2d3748 !important;
}

/* Hero Section */
.hero {
  background: #e8e8e8;
  padding: 140px 0 100px;
  margin-top: 80px;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 900px;
}

.cta-button {
  background: #ffa726;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
  background: #ff9800;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.feature-item {
  margin-bottom: 120px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  color: white;
}

.feature-number.orange {
  background: #ffa726;
}

.feature-number.green {
  background: #66bb6a;
}

.feature-number.cyan {
  background: #26c6da;
}

.feature-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-item.reverse .feature-image {
  order: 2;
}

.feature-item.reverse .feature-text {
  order: 1;
}

.feature-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

.feature-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
}

/* Blog Section */
.blogs {
  padding: 100px 0;
  background: #f5f5f5;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 8rem;
}

.blog-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
}

.blog-image {
  height: 280px;
  overflow: hidden;
}

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

.blog-content {
  padding: 2.5rem;
}

.blog-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.blog-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.read-more-btn {
  background: #ffa726;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.read-more-btn:hover {
  background: #ff9800;
}

/* What Makes Different */
.what-makes-different {
  max-width: 1000px;
  margin: 0 auto;
}

.what-makes-different h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 4rem;
  text-align: left;
}

.differences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.difference-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.difference-line {
  width: 6px;
  height: 80px;
  background: #26c6da;
  margin-top: 0.5rem;
  flex-shrink: 0;
  border-radius: 3px;
}

.difference-item p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #f5f5f5;
}

.contact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 3rem;
}

.contact-form {
  background: #26c6da;
  padding: 3.5rem;
  border-radius: 16px;
  margin-bottom: 3rem;
  max-width: 800px;
}

.contact-form input {
  width: 100%;
  padding: 16px;
  margin-bottom: 16px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  background: white;
}

.contact-form input:last-of-type {
  margin-bottom: 24px;
}

.contact-form input::placeholder {
  color: #999;
}

.register-btn {
  width: 100%;
  background: #1a8fa3;
  color: white;
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.register-btn:hover {
  background: #156b7a;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #4a5568;
}

.icon {
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background: #2d3748;
  color: white;
  padding: 4rem 0;
}

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

.footer-content h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2.5rem;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
}

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

.copyright {
  color: #a0aec0;
  font-size: 0.95rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.cookie-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d3748;
}

.cookie-content p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-accept {
  background: #ffa726;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-accept:hover {
  background: #ff9800;
}

.btn-learn-more {
  background: transparent;
  color: #ffa726;
  border: 2px solid #ffa726;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-learn-more:hover {
  background: #ffa726;
  color: white;
}

/* Button Ripple Effect */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
      transform: scale(4);
      opacity: 0;
  }
}

button {
  position: relative;
  overflow: hidden;
}

/* Smooth transitions */
section {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image img {
  transition: opacity 0.6s ease, filter 0.6s ease;
}

/* Catalog Page Styles */
.page-header {
  background: #e8e8e8;
  padding: 140px 0 80px;
  margin-top: 80px;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.page-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 900px;
}

.recipe-cards {
  padding: 100px 0;
  background: white;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.recipe-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.recipe-image {
  height: 200px;
  overflow: hidden;
}

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

.recipe-content {
  padding: 2rem;
}

.recipe-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.recipe-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ingredients,
.method {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
}

.ingredients h4,
.method h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ingredients p,
.method p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.tips-section {
  padding: 100px 0;
  background: #f5f5f5;
}

.tips-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tips-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 2rem;
}

.tips-list {
  list-style: none;
  padding: 0;
}

.tips-list li {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.tips-list li::before {
  content: "•";
  color: #26c6da;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.tips-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.more-recipes {
  padding: 100px 0;
  background: white;
}

.technique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.technique-card {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technique-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.technique-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.technique-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.technique-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.learn-more {
  display: inline-block;
  background: #ffa726;
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.learn-more:hover {
  background: #ff9800;
}

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

.nav-menu a.active {
  color: #ffa726;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
      padding: 0 30px;
  }
  
  .hero-title {
      font-size: 3.5rem;
  }
  
  .page-title {
      font-size: 3rem;
  }
  
  .feature-content {
      gap: 3rem;
  }
  
  .recipes-grid {
      gap: 2rem;
  }
  
  .technique-grid {
      gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .feature-content {
      gap: 2rem;
  }
  
  .blog-grid {
      gap: 3rem;
  }
  
  .differences-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .hero-title {
      font-size: 3rem;
  }
  
  .page-title {
      font-size: 2.5rem;
  }
  
  .recipes-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
  }
  
  .technique-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
  }
  
  .tips-content {
      gap: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
      padding: 0 20px;
  }
  
  .nav-menu {
      display: none;
  }
  
  .hero {
      padding: 120px 0 80px;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-description {
      font-size: 1rem;
  }
  
  .page-header {
      padding: 120px 0 60px;
  }
  
  .page-title {
      font-size: 2rem;
  }
  
  .page-description {
      font-size: 1rem;
  }
  
  .feature-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .feature-item.reverse .feature-image {
      order: 1;
  }
  
  .feature-item.reverse .feature-text {
      order: 2;
  }
  
  .features {
      padding: 80px 0;
  }
  
  .blogs {
      padding: 80px 0;
  }
  
  .contact {
      padding: 80px 0;
  }
  
  .recipe-cards {
      padding: 80px 0;
  }
  
  .tips-section {
      padding: 80px 0;
  }
  
  .more-recipes {
      padding: 80px 0;
  }
  
  .recipes-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .technique-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .tips-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .tips-text h2 {
      font-size: 2rem;
  }
  
  .blog-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .footer-links {
      flex-direction: column;
      gap: 1.5rem;
  }
  
  .cookie-buttons {
      flex-direction: column;
  }
  
  .contact-form {
      padding: 2.5rem;
  }
  
  .section-title {
      font-size: 2.5rem;
  }
  
  .feature-title {
      font-size: 1.8rem;
  }
  
  .what-makes-different h2 {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  .hero {
      padding: 100px 0 60px;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .feature-title {
      font-size: 1.5rem;
  }
  
  .features,
  .blogs,
  .contact {
      padding: 60px 0;
  }
  
  .cookie-popup {
      padding: 1rem;
  }
  
  .cookie-content {
      padding: 2rem;
  }
  
  .difference-item {
      padding: 1.5rem;
  }
  
  .contact-form {
      padding: 2rem;
  }
}