@keyframes lpb-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* === ADVERTORIAL LABEL === */
.advertorial-label {
  font-size: 6px;
  color: #999;
  text-transform: uppercase;
  padding: 5px 20px;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

/* Hide advertorial label on mobile */
@media (max-width: 768px) {
  .advertorial-label {
    display: none;
  }
}

/* === HEADER === */
.header {
  background: #f8f9fa;
  border-bottom: 3px solid #15803d;
  padding: 15px 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: #c41e3a;
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: #666;
  font-family: Arial, sans-serif;
  margin-top: 5px;
}

/* === ARTICLE CONTAINER === */
.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* === REFERENCES BAR === */
.references-bar {
  background: #f0f7f0;
  border-left: 4px solid #2e7d32;
  padding: 12px 16px;
  margin: 15px 0 25px 0;
  font-size: 13px;
  font-family: Arial, sans-serif;
  color: #555;
}
.references-bar strong {
  color: #2e7d32;
  font-size: 13px;
}
.references-bar a {
  color: #1a73e8;
  text-decoration: none;
  font-size: 12px;
  word-break: break-all;
}

/* === BREADCRUMB === */
.breadcrumb {
  font-size: 12px;
  color: #999;
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: #999;
  text-decoration: none;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 30px 0 15px 0;
}
h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin: 25px 0 12px 0;
}
.subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: #666;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333;
}

/* === IMAGES === */
.article-image {
  width: 100%;
  height: auto;
  margin: 20px 0;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: #888;
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: #fff9e6;
  border-left: 4px solid #f5a623;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 16px;
}
.highlight-box strong {
  color: #d4911a;
}

/* === STUDY BOX === */
.study-box {
  background: #f0f4ff;
  border: 1px solid #d0d8f0;
  border-radius: 4px;
  padding: 18px 20px;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #4a6cf7;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* === TESTIMONIAL === */
.testimonial {
  background: #f8f9fa;
  border-left: 3px solid #28a745;
  padding: 18px 20px;
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex: 1;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: #666;
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: #28a745;
}

/* === INGREDIENT GRID === */
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 20px 0;
}
.ingredient-card {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: #2e7d32;
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: #555;
  font-family: Arial, sans-serif;
}

/* === HOW IT WORKS STEPS === */
.step-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 4px;
}
.step-number {
  background: #28a745;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: #555;
}

/* === CTA BUTTON === */
.cta-button {
  display: block;
  width: 100%;
  margin: 30px 0;
  padding: 18px 30px;
  background: linear-gradient(135deg, #32cd32 0%, #1e7e34 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: opacity 0.2s;
}
.cta-button:hover {
  opacity: 0.9;
}

/* === STOCK WARNING === */
.stock-warning {
  text-align: center;
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 12px;
  border-radius: 4px;
  margin: 15px 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #856404;
}

/* === GUARANTEE BOX === */
.guarantee-box {
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
  text-align: center;
}
.guarantee-box h3 {
  color: #28a745;
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}

/* === TWO FUTURES === */
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.future-bad {
  background: #fff5f5;
  border-left: 4px solid #dc3545;
  padding: 15px;
}
.future-good {
  background: #f0fff0;
  border-left: 4px solid #28a745;
  padding: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: #555;
}

/* === AGE BUTTONS === */
.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.age-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #32cd32 0%, #1e7e34 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  font-family: Arial, sans-serif;
}

/* === COMMENTS SECTION === */
.comments-section {
  border-top: 2px solid #eee;
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: #1a1a1a;
}
.comment {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: #666;
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex: 1;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: #999;
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: #333;
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background: #f8f9fa;
  padding: 10px 12px;
  border-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: #1a73e8;
}

/* === FOOTER === */
.footer {
  width: 100%;
  background: #1a1a1a;
  color: #888;
  font-size: 8px;
  line-height: 1.5;
  padding: 25px 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}
.footer p {
  font-size: 8px;
  color: #888;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: #aaa;
}
.footer a {
  font-size: 8px;
  color: #999;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #333;
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #333;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding: 15px 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
}

.comments-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: var(--section-spacing) 0;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-grey);
  transition: var(--transition-normal);
}

.comments-wrapper:hover {
  box-shadow: var(--shadow-lg);
}

h2.comments-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 3px solid #0066cc;
  padding-bottom: 0.75rem;
  margin-bottom: 2.5rem;
  position: relative;
}

h2.comments-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #0066cc, #004d99);
  border-radius: 2px;
}

/* Main Comment Container */
.comment {
  margin-bottom: 2.5rem;
  position: relative;
  transition: var(--transition-normal);
}

.comment:last-child {
  margin-bottom: 0;
}

.comment::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-grey),
    transparent
  );
}

.comment:last-child::after {
  display: none;
}

/* Comment Flex Layout */
.comment-flex {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition-normal);
  padding: 0.5rem;
  border-radius: var(--radius-md);
}

.comment-flex:hover {
  background: rgba(0, 102, 204, 0.02);
  transform: translateY(-1px);
}

/* Reply Styling */
.comment-flex.answer {
  margin-top: 1.5rem;
  margin-left: 2.5rem;
  padding: 1rem;
  background: rgba(0, 102, 204, 0.03);
  border-left: 3px solid #0066cc;
  border-radius: var(--radius-md);
  position: relative;
}

.comment-flex.answer::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: -0.5rem;
  width: 0;
  height: 0;
  border-left: 8px solid #0066cc;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* Avatar Styling */
.comment-left {
  flex-shrink: 0;
}

.comment-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #004d99;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.comment-flex.answer .comment-avatar {
  width: 48px;
  height: 48px;
  border-width: 2px;
}

.comment-avatar:hover {
  transform: scale(1.05);
  border-color: #0066cc;
  box-shadow: var(--shadow-md);
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.avatar-letter {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  border-radius: 50%;
}

.comment-flex.answer .avatar-letter {
  font-size: 1.2rem;
}

/* Comment Content */
.comment-right {
  flex: 1;
  min-width: 0; /* Prevents flex item from overflowing */
}

.comment-text {
  margin-bottom: 1rem;
}

.comment-info {
  margin-bottom: 0.5rem;
}

.comment-info .name {
  font-weight: 600;
  font-size: 1rem;
  color: #0066cc;
  margin: 0;
  line-height: 1.4;
  display: inline-block;
  position: relative;
}

.comment-info .name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0066cc;
  transition: var(--transition-fast);
}

.comment-info .name:hover::after {
  width: 100%;
}

.comment-text .text {
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
  word-wrap: break-word;
  hyphens: auto;
}

/* Comment Images */
.comment-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  cursor: pointer;
}

.comment-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* Comment Footer */
.comment-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--medium-grey);
  flex-wrap: wrap;
}

.comment-footer .like,
.comment-footer .reply {
  color: #0066cc;
  cursor: pointer;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
  user-select: none;
}

.comment-footer .like:hover,
.comment-footer .reply:hover {
  background: rgba(0, 102, 204, 0.1);
  transform: translateY(-1px);
}

.comment-footer .like.liked {
  color: var(--accent-red);
  font-weight: 600;
}

.likes-count {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  color: var(--text-light);
}

.like-icon {
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236c757d' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
  transition: var(--transition-fast);
}

.date {
  color: var(--medium-grey);
  font-size: 0.8rem;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .comments-wrapper {
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--radius-md);
  }

  h2.comments-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .comment {
    margin-bottom: 2rem;
  }

  .comment-flex {
    gap: 0.75rem;
    padding: 0.25rem;
  }

  .comment-flex.answer {
    margin-left: 1.5rem;
    padding: 0.75rem;
  }

  .comment-avatar {
    width: 48px;
    height: 48px;
    border-width: 2px;
  }

  .comment-flex.answer .comment-avatar {
    width: 42px;
    height: 42px;
  }

  .comment-footer {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .comment-footer .like,
  .comment-footer .reply {
    padding: 0.2rem 0.4rem;
  }

  .comment-text .text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .comments-wrapper {
    padding: 0.5rem;
    margin: 1.5rem 0;
  }

  h2.comments-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .comment-flex {
    flex-direction: row;
    gap: 0.5rem;
  }

  .comment-flex.answer {
    margin-left: 1.5rem;
    padding: 0.5rem;
  }

  .comment-avatar {
    width: 40px;
    height: 40px;
  }

  .comment-flex.answer .comment-avatar {
    width: 36px;
    height: 36px;
  }

  .comment-footer {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .comment-image {
    margin-top: 0.75rem;
  }

  .likes-count {
    gap: 0.25rem;
  }

  .like-icon {
    width: 14px;
    height: 14px;
  }
}

/* Animation for new comments */
@keyframes commentAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comment-flex {
  animation: commentAppear 0.5s ease-out;
}

/* Loading state */
.comments-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  color: var(--medium-grey);
  font-style: italic;
}

.comments-loading::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-grey);
  border-top: 2px solid #0066cc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.75rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.share-experience-btn {
  background: linear-gradient(135deg, #0066cc, #004d99);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family:
    "Open Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.share-experience-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
:root {
  --dark-blue: #004d99;
  --light-blue: #e6f2ff;
  --navy: #1a365d;
  --text-dark: #333;
  --text-light: #666;
  --medium-grey: #6c757d;
  --border-grey: #e0e0e0;
  --accent-red: #e53e3e;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --section-spacing: 2rem;
  --font-sans:
    "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-serif: "Roboto", Georgia, serif;
}

/* Share Experience Button */
.share-experience-section {
  margin-top: 2.5rem;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border-grey);
}

/* Comment Form Overlay */
.comment-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.comment-form-container {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: formAppear 0.3s ease-out;
}

@keyframes formAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Comment Form Header */
.comment-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--border-grey);
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.05),
    rgba(0, 102, 204, 0.02)
  );
}

.comment-form-header h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.close-form-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--medium-grey);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-normal);
}

.close-form-btn:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4444;
}

/* Comment Form Body */
.comment-form {
  padding: 2rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.avatar-group {
  flex: 0 0 auto;
}

.name-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  border: 2px solid var(--border-grey);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: var(--transition-normal);
  resize: vertical;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
  min-height: 120px;
}

/* Avatar Upload */
.avatar-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.avatar-upload input[type="file"] {
  display: none;
}

.avatar-preview {
  width: 80px;
  height: 80px;
  border: 3px solid var(--border-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(0, 102, 204, 0.05);
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.avatar-preview:hover {
  border-color: #0066cc;
  background: rgba(0, 102, 204, 0.1);
}

.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-preview span {
  font-size: 2rem;
  color: var(--medium-grey);
  font-weight: 300;
}

.remove-avatar-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #ff4444;
  transition: var(--transition-normal);
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.remove-avatar-btn:hover {
  background: #ff4444;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.avatar-upload-label {
  font-size: 0.8rem;
  color: #0066cc;
  cursor: pointer;
  text-align: center;
  padding: 0.25rem 0.75rem;
  border: 1px solid #0066cc;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.avatar-upload-label:hover {
  background: #0066cc;
  color: white;
}

/* Photo Upload */
.photo-upload {
  position: relative;
}

.photo-upload input[type="file"] {
  display: none;
}

.photo-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 2px dashed var(--border-grey);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  color: var(--medium-grey);
  font-weight: 500;
}

.photo-upload-label:hover {
  border-color: #0066cc;
  background: rgba(0, 102, 204, 0.02);
  color: #0066cc;
}

.upload-icon {
  font-size: 1.2rem;
}

.photo-preview {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
}

.photo-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.remove-photo-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: #ff4444;
  transition: var(--transition-normal);
}

.remove-photo-btn:hover {
  background: #ff4444;
  color: white;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-grey);
}

.cancel-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-grey);
  background: white;
  color: var(--medium-grey);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-normal);
}

.cancel-btn:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.submit-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #0066cc, #004d99);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #004d99, #0066cc);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Responsive Design for Comment Form */
@media (max-width: 768px) {
  .comment-form-overlay {
    padding: 0.5rem;
    align-items: flex-start;
    padding-top: 2rem;
  }

  .comment-form-container {
    max-height: 95vh;
  }

  .comment-form-header {
    padding: 1rem 1.5rem;
  }

  .comment-form {
    padding: 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .avatar-preview {
    width: 60px;
    height: 60px;
  }

  .form-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cancel-btn,
  .submit-btn {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .comment-form-overlay {
    padding: 0;
    align-items: stretch;
  }

  .comment-form-container {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
  }

  .share-experience-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #15803d;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
@media screen and (max-width: 768px) {
  .comment {
    flex-wrap: wrap;
  }
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: #15803d !important;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: block !important;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
* {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
body {
  font-family: Georgia, serif;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}
.advertorial-label {
  font-size: 6px;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  font-family: Arial, sans-serif;
}
.header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: rgb(196, 30, 58);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  text-align: center;
}
.logo {
  font-size: 32px;
  font-weight: bold;
  color: rgb(196, 30, 58);
  font-family: Georgia, serif;
  letter-spacing: 1px;
}
.header-date {
  font-size: 12px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}
.article-container {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.references-bar strong {
  color: rgb(46, 125, 50);
  font-size: 13px;
}
.references-bar a {
  color: rgb(26, 115, 232);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 12px;
  word-break: break-all;
}
.breadcrumb {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
}
.breadcrumb a {
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
h1 {
  font-size: 32px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-bottom: 12px;
  font-weight: bold;
}
h2 {
  font-size: 24px;
  line-height: 1.3;
  color: rgb(26, 26, 26);
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
}
h3 {
  font-size: 20px;
  color: rgb(26, 26, 26);
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 12px;
  margin-left: 0px;
}
.subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}
.byline {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(238, 238, 238);
}
p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: rgb(51, 51, 51);
}
.article-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  display: block;
}
.image-caption {
  font-size: 13px;
  color: rgb(136, 136, 136);
  font-style: italic;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.highlight-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 249, 230);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(245, 166, 35);
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 16px;
}
.highlight-box strong {
  color: rgb(212, 145, 26);
}
.study-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 244, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(208, 216, 240);
  border-right-color: rgb(208, 216, 240);
  border-bottom-color: rgb(208, 216, 240);
  border-left-color: rgb(208, 216, 240);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
}
.study-box .study-label {
  font-size: 11px;
  text-transform: uppercase;
  color: rgb(74, 108, 247);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.testimonial {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  display: flex;
  row-gap: 15px;
  column-gap: 15px;
  align-items: flex-start;
}
.testimonial-img {
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.testimonial p {
  font-style: italic;
  font-size: 17px;
  margin-bottom: 8px;
}
.testimonial .author {
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-style: normal;
  font-family: Arial, sans-serif;
}
.testimonial .verified {
  font-size: 12px;
  color: rgb(40, 167, 69);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.ingredient-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ingredient-card strong {
  display: block;
  color: rgb(46, 125, 50);
  margin-bottom: 5px;
  font-size: 16px;
}
.ingredient-card span {
  font-size: 14px;
  color: rgb(85, 85, 85);
  font-family: Arial, sans-serif;
}
.step-box {
  display: flex;
  align-items: flex-start;
  row-gap: 15px;
  column-gap: 15px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.step-number {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(40, 167, 69);
  color: rgb(255, 255, 255);
  width: 36px;
  height: 36px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}
.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}
.step-content span {
  font-size: 15px;
  color: rgb(85, 85, 85);
}
.cta-button {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 18px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
.cta-button:hover {
  opacity: 0.9;
}
.stock-warning {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 243, 205);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 193, 7);
  border-right-color: rgb(255, 193, 7);
  border-bottom-color: rgb(255, 193, 7);
  border-left-color: rgb(255, 193, 7);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: rgb(133, 100, 4);
}
.guarantee-box {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(40, 167, 69);
  border-right-color: rgb(40, 167, 69);
  border-bottom-color: rgb(40, 167, 69);
  border-left-color: rgb(40, 167, 69);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
  text-align: center;
}
.guarantee-box h3 {
  color: rgb(40, 167, 69);
  margin-bottom: 10px;
}
.guarantee-box p {
  font-size: 16px;
}
.two-futures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.future-bad {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 245, 245);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(220, 53, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-good {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(240, 255, 240);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(40, 167, 69);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}
.future-bad h4,
.future-good h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.future-bad p,
.future-good p {
  font-size: 14px;
  color: rgb(85, 85, 85);
}
.age-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}
.age-btn {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  background-image: linear-gradient(
    135deg,
    rgb(50, 205, 50) 0%,
    rgb(30, 126, 52) 100%
  );
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 18px;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: Arial, sans-serif;
}
.comments-section {
  border-top-width: 2px;
  border-top-style: solid;
  border-top-color: rgb(238, 238, 238);
  margin-top: 30px;
  padding-top: 20px;
}
.comments-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: rgb(26, 26, 26);
}
.comment {
  display: flex;
  row-gap: 12px;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 12px;
  padding-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(240, 240, 240);
}
.comment-avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(221, 221, 221);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: rgb(102, 102, 102);
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}
.comment-body {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}
.comment-name {
  font-weight: bold;
  font-size: 14px;
  color: rgb(26, 26, 26);
  font-family: Arial, sans-serif;
}
.comment-time {
  font-size: 12px;
  color: rgb(153, 153, 153);
  font-family: Arial, sans-serif;
}
.comment-text {
  font-size: 15px;
  margin-top: 4px;
  color: rgb(51, 51, 51);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.comment-reply {
  margin-left: 52px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(248, 249, 250);
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.comment-reply .comment-name {
  color: rgb(26, 115, 232);
}
.footer {
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(26, 26, 26);
  color: rgb(136, 136, 136);
  font-size: 8px;
  line-height: 1.5;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  margin-top: 40px;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 900px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.footer p {
  font-size: 8px;
  color: rgb(136, 136, 136);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer strong {
  font-size: 8px;
  color: rgb(170, 170, 170);
}
.footer a {
  font-size: 8px;
  color: rgb(153, 153, 153);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}
.footer-links {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
.footer-sources {
  margin-top: 15px;
  padding-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(51, 51, 51);
}
#i8rxg {
  max-width: 98%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
#ixiso {
  max-width: 98%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
#ifask8 {
  max-width: 98%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
#ixamt9 {
  max-width: 98%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
#i7qqwo {
  max-width: 98%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
#iwgfzs {
  max-width: 98%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
#i87bfi {
  max-width: 98%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
#iw5q02 {
  max-width: 98%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
#iehtld {
  max-width: 98%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
#igtq1q {
  color: rgb(125, 125, 125);
}
#i2ddjo {
  color: rgb(125, 125, 125);
}
#igrww2 {
  color: rgb(125, 125, 125);
}
#i4qu79 {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(245, 245, 245);
  text-align: center;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: dashed;
  border-right-style: dashed;
  border-bottom-style: dashed;
  border-left-style: dashed;
  border-top-color: rgb(204, 204, 204);
  border-right-color: rgb(204, 204, 204);
  border-bottom-color: rgb(204, 204, 204);
  border-left-color: rgb(204, 204, 204);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  font-family: sans-serif;
  color: rgb(102, 102, 102);
  font-size: 14px;
}
@media (max-width: 768px) {
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 24px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 17px;
  }
  .article-container {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .cta-button {
    font-size: 18px;
    padding-top: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .ingredient-grid {
    grid-template-columns: 1fr;
  }
  .two-futures {
    grid-template-columns: 1fr;
  }
}
