<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">     html, body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: #FDDCE1;
      color: #333;
      overflow-x: hidden;
      max-width: 100vw;
    }
    main {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: 40px 0;
      text-align: center;
    }
    .section h2 {
      margin-bottom: 30px;
      font-size: 28px;
      color: #e67e22;
    }
    .grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .card {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: #FDDCE1;
      transition: transform 0.3s ease;
      position: relative;
    }
    .card:hover {
      transform: scale(1.05);
    }
    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
    .card-title {
      position: absolute;
      color: white;
      background: rgba(0,0,0,0.5);
      padding: 5px 10px;
      border-radius: 20px;
      bottom: 10px;
      font-size: 16px;
    }
    .welcome-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 0;
      background: #FDDCE1;
    }
    .welcome-section img {
      width: 150px;
      border-radius: 50%;
      margin-bottom: 20px;
    }
    .newsletter {
      background: #FDDCE1;
      padding: 40px 0;
      text-align: center;
    }
    .newsletter input[type="email"] {
      padding: 10px;
      width: 250px;
      border: 1px solid #ccc;
      border-radius: 5px 0 0 5px;
    }
    .newsletter button {
      padding: 10px 20px;
      background: #e67e22;
      color: white;
      border: none;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
    }

    
      @media screen and (max-width: 768px) {
    .responsive-featured-box {
      position: static !important;
      max-width: 100% !important;
      margin: 20px 0 0 0 !important;
      box-shadow: none !important;
    }
    .categories-list {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  .categories-list {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .category-item {
    text-align: center;
    font-size: 14px;
    width: 80px;
    flex-shrink: 0;
  }
  .category-item img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .newsletter-box {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 40px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
  }
  .newsletter-box span {
    font-weight: bold;
    font-size: 18px;
    color: #f59e0b;
    display: flex;
    align-items: center;
  }
  .newsletter-box input[type=email] {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .newsletter-box button {
    background-color: #d32f2f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
    @media screen and (max-width: 768px) {
    .responsive-featured-box {
      position: static !important;
      max-width: 100% !important;
      margin: 20px 0 0 0 !important;
      box-shadow: none !important;
    }
  }

  .recipe-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
  }
  .recipe-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
  }
  .recipes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .recipe-card {
    width: calc(25% - 20px);
    text-align: center;
  }
  .recipe-card img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
  }
  .recipe-card a {
    color: #b71c1c;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    font-size: 18px;
  }
  .recipe-card p {
    font-size: 15px;
    color: #444;
    margin-top: 5px;
  }
  .section-button {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  .section-button button {
    background: #d32f2f;
    color: #FDDCE1;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
  }
  @media screen and (max-width: 1024px) {
    .recipe-card {
      width: calc(33.333% - 20px);
    }
  }
  @media screen and (max-width: 768px) {
    .recipe-card {
      width: calc(50% - 20px);
    }
  }
  @media screen and (max-width: 480px) {
    .recipe-card {
      width: 25%;
    }
  }
  
  .footer {
    background: #FDDCE1;;
    padding: 50px 40px;
    border-top: 1px solid #FDDCE1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    text-align: left;
  }
  .footer-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    max-width: 320px;
    flex: 1;
  }
  .footer-left img {
    height: 110px;
    margin-bottom: 8px;
  }
  .footer-left p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
  }
  .footer-left small {
    display: block;
    margin-bottom: 15px;
    color: #333;
  }
  .footer-left form {
    display: flex;
    margin-bottom: 20px;
  }
  .footer-left input[type=email] {
    padding: 10px;
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 3px 0 0 3px;
    font-size: 14px;
  }
  .footer-left button {
    background: #fff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 0 3px 3px 0;
    font-weight: bold;
    cursor: pointer;
  }
  .footer-connect {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .footer-connect .label {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 0;
  }
  .footer-social {
    display: flex;
    gap: 12px;
  }
  .footer-social a {
    background: #fddce1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
  }
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 2;
    justify-content: flex-start;
  }
  .footer-column h4 {
    font-size: 13px;
    text-transform: uppercase;
    color: #066;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  .footer-column ul li {
    margin-bottom: 8px;
  }
  .footer-column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
  }
  .footer-cert {
    margin-top: 15px;
  }
  @media screen and (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
    .footer-left, .footer-columns {
      width: 100%;
      max-width: 100%;
      text-align: center;
    }
    .footer-columns {
      flex-direction: column;
      align-items: center;
    }
    .footer-left form {
      flex-direction: column;
    }
    .footer-left input[type=email],
    .footer-left button {
      width: 100%;
      border-radius: 3px;
    }
    .footer-left button {
      margin-top: 10px;
    }
    .footer-connect {
      flex-direction: column;
    }
  }
  
  header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .header-logo img {
    height: 50px;
  }
  .main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .main-nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
  }
  .main-nav a:hover {
    color: #d44a3c;
  }
  .main-nav a img {
    height: 24px;
    margin-bottom: 4px;
  }
  .search-box {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .search-box input {
    padding: 6px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
  }

  @media screen and (max-width: 768px) {
    .main-nav {
      display: none;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      width: 100%;
      background: #fff;
      padding: 15px 20px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .main-nav.active {
      display: flex;
    }
    .nav-toggle {
      display: flex;
    }
  }
  
    .social-nav {
  margin-top: 40px;
  text-align: center;
}
.social-nav__title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.social-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-nav__link {
  background: #FDDCE1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-nav__icon {
  fill: white;
  width: 20px;
  height: 20px;
}</pre></body></html>