/* ========================================
   Productra - Global Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --color-teal: #34B9C3;
  --color-teal-dark: #10ADB9;
  --color-dark: #1e293b;
  --color-heading: #141414;
  --color-text: #7a7a7a;
  --color-nav: #334155;
  --color-white: #FFFFFF;
  --color-light-bg: #F0F5FA;
  --color-page-bg: #EBEBEB;
  --color-border: #D1D5DB;
  --color-footer-link: #33a7b2;
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Exo 2', sans-serif;
  --header-height: 81px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-footer-link);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.3;
}

p {
  margin-bottom: 1em;
}

ul {
  list-style: none;
}

/* ========================================
   Header
   ======================================== */
.site-header {
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.site-logo img {
  width: 170px;
  height: auto;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
}

.desktop-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.desktop-nav a {
  color: var(--color-nav);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--color-teal);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-footer-link);
  position: relative;
  transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-footer-link);
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: 999;
  overflow-y: auto;
  padding: 20px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav li {
  border-bottom: none;
}

.mobile-nav a {
  display: block;
  padding: 14px 10px;
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-teal);
}

/* ========================================
   Homepage - Full Background
   ======================================== */
.homepage-wrapper {
  background-image: url('../assets/background 4.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: calc(100vh - var(--header-height));
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.homepage-wrapper .site-footer {
  margin-top: auto;
}

.homepage-wrapper .site-footer {
  border-top: none;
}

/* ========================================
   Animated Bubbles
   ======================================== */
.bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  animation: bubbleRise linear infinite;
}

.bubble:nth-child(1)  { width: 28px; height: 28px; left: 4%;  animation-duration: 14s; animation-delay: 0s;   opacity: 0.55; }
.bubble:nth-child(2)  { width: 18px; height: 18px; left: 10%; animation-duration: 18s; animation-delay: 2s;   opacity: 0.52; }
.bubble:nth-child(3)  { width: 38px; height: 38px; left: 16%; animation-duration: 16s; animation-delay: 4s;   opacity: 0.5;  }
.bubble:nth-child(4)  { width: 22px; height: 22px; left: 22%; animation-duration: 20s; animation-delay: 1s;   opacity: 0.58; }
.bubble:nth-child(5)  { width: 14px; height: 14px; left: 28%; animation-duration: 15s; animation-delay: 5.5s; opacity: 0.54; }
.bubble:nth-child(6)  { width: 32px; height: 32px; left: 34%; animation-duration: 22s; animation-delay: 3s;   opacity: 0.5;  }
.bubble:nth-child(7)  { width: 20px; height: 20px; left: 40%; animation-duration: 17s; animation-delay: 0.5s; opacity: 0.6;  }
.bubble:nth-child(8)  { width: 16px; height: 16px; left: 46%; animation-duration: 19s; animation-delay: 6s;   opacity: 0.52; }
.bubble:nth-child(9)  { width: 26px; height: 26px; left: 52%; animation-duration: 21s; animation-delay: 7s;   opacity: 0.56; }
.bubble:nth-child(10) { width: 12px; height: 12px; left: 58%; animation-duration: 16s; animation-delay: 3.5s; opacity: 0.6;  }
.bubble:nth-child(11) { width: 34px; height: 34px; left: 64%; animation-duration: 23s; animation-delay: 8s;   opacity: 0.5;  }
.bubble:nth-child(12) { width: 20px; height: 20px; left: 70%; animation-duration: 18s; animation-delay: 1.5s; opacity: 0.55; }
.bubble:nth-child(13) { width: 24px; height: 24px; left: 76%; animation-duration: 15s; animation-delay: 4.5s; opacity: 0.58; }
.bubble:nth-child(14) { width: 16px; height: 16px; left: 82%; animation-duration: 20s; animation-delay: 2.5s; opacity: 0.52; }
.bubble:nth-child(15) { width: 30px; height: 30px; left: 88%; animation-duration: 17s; animation-delay: 6.5s; opacity: 0.54; }
.bubble:nth-child(16) { width: 14px; height: 14px; left: 94%; animation-duration: 22s; animation-delay: 0.8s; opacity: 0.6;  }
.bubble:nth-child(17) { width: 22px; height: 22px; left: 7%;  animation-duration: 19s; animation-delay: 9s;   opacity: 0.53; }
.bubble:nth-child(18) { width: 36px; height: 36px; left: 31%; animation-duration: 14s; animation-delay: 10s;  opacity: 0.5;  }
.bubble:nth-child(19) { width: 18px; height: 18px; left: 49%; animation-duration: 21s; animation-delay: 8.5s; opacity: 0.57; }
.bubble:nth-child(20) { width: 26px; height: 26px; left: 61%; animation-duration: 16s; animation-delay: 11s;  opacity: 0.55; }
.bubble:nth-child(21) { width: 12px; height: 12px; left: 85%; animation-duration: 18s; animation-delay: 9.5s; opacity: 0.6;  }
.bubble:nth-child(22) { width: 20px; height: 20px; left: 19%; animation-duration: 23s; animation-delay: 12s;  opacity: 0.52; }
.bubble:nth-child(23) { width: 30px; height: 30px; left: 73%; animation-duration: 15s; animation-delay: 7.5s; opacity: 0.56; }
.bubble:nth-child(24) { width: 16px; height: 16px; left: 42%; animation-duration: 20s; animation-delay: 11.5s;opacity: 0.58; }

@keyframes bubbleRise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  5% {
    opacity: 0.55;
  }
  50% {
    transform: translateY(-50vh) translateX(15px) scale(1.04);
  }
  90% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-110vh) translateX(-10px) scale(0.9);
    opacity: 0;
  }
}

/* ========================================
   Hero Section (Homepage)
   ======================================== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 100px 30px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--color-heading);
  font-size: 76px;
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 20px;
}

.hero-content p {
  color: var(--color-heading);
  font-size: 16px;
  max-width: 550px;
  margin: 0 auto;
}

/* ========================================
   Products Grid (Homepage)
   ======================================== */
.products-section {
  padding: 20px 0 80px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.products-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 10px;
  width: 70%;
}

.product-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 18px 29px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  flex: 1 1 0;
  min-width: 0;
  gap: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
}

.product-card-image {
  width: 100%;
}

.product-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 35px 35px 0 0;
}

.product-card-body {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  width: 100%;
}

.product-card-icon {
  width: 90px;
  height: 90px;
  border-radius: 35px;
  overflow: visible;
  margin-top: -50px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.product-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  border-radius: 35px;
}

.product-card h3 {
  font-size: 32px;
  font-weight: 600;
  margin: 4px 0 0;
  color: #000000;
}

.product-card p {
  color: var(--color-text);
  font-size: 16px;
  margin: 0;
  flex: 1;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  margin-top: 6px;
}

.btn-primary {
  background-color: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
}

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

.btn-outline {
  background-color: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover {
  background-color: var(--color-teal-dark);
  color: var(--color-white);
}

/* ========================================
   Subpage Content Wrapper
   ======================================== */
.subpage-wrapper {
  background-color: var(--color-white);
  min-height: calc(100vh - var(--header-height));
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.subpage-wrapper .page-content {
  flex: 1;
}

.subpage-wrapper .site-footer {
  margin-top: auto;
}

/* ========================================
   Page Content (About, Contact)
   ======================================== */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px 80px;
  position: relative;
}

.page-content h1 {
  font-size: 54px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.page-content h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-dark);
}

.page-content p {
  color: var(--color-text);
  line-height: 1.75;
  font-size: 16px;
}

.about-layout {
  position: relative;
  overflow: hidden;
}

.about-text {
  max-width: 51%;
  position: relative;
  z-index: 1;
}

.about-illustration {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ========================================
   Past Products Page
   ======================================== */
.past-products-wrapper {
  background-color: var(--color-page-bg);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
}

.past-products-wrapper .past-products-section {
  flex: 1;
}

.past-products-wrapper .site-footer {
  margin-top: auto;
}

.past-products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.past-products-section > h1 {
  font-size: 54px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.past-products-intro {
  color: var(--color-text);
  font-size: 16px;
  margin-bottom: 32px;
}

.past-products-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.past-product-card {
  background: var(--color-white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: row;
  padding: 30px;
  gap: 30px;
  align-items: center;
}

.past-product-card-image {
  width: 50%;
  flex-shrink: 0;
  overflow: visible;
  border-radius: 20px;
}

.past-product-card-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.past-product-card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.past-product-card-body h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

.past-product-card-body .year {
  font-size: 16px;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 16px;
}

.past-product-card-body p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   Contact Form
   ======================================== */

.contact-form {
  margin-top: 30px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group label .required {
  color: #e53e3e;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  background-color: var(--color-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input {
  max-width: 400px;
}

.form-group textarea {
  max-width: 680px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(52, 185, 195, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--color-teal);
  color: var(--color-white);
  border: none;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
  background-color: var(--color-teal-dark);
}

/* Honeypot - visually hidden but accessible to bots */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Form status messages */
.form-message {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.5;
}

.form-message.success {
  display: block;
  background-color: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.form-message.error {
  display: block;
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ========================================
   Blog
   ======================================== */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 15px);
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.blog-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 8px 0 10px;
  line-height: 1.3;
}

.blog-card-body p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.blog-category {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-article {
  max-width: 800px;
}

.blog-article h1 {
  margin-bottom: 8px;
}

.blog-meta {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 28px;
}

.blog-featured-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
}

.blog-article ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 1em;
}

.blog-article ol li {
  margin-bottom: 6px;
  color: var(--color-text);
  line-height: 1.7;
}

.blog-back {
  margin-top: 40px;
}

/* Blog Post Page Card Layout */
.blog-post-wrapper {
  background-color: var(--color-page-bg);
}

.blog-article-card {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  overflow: hidden;
}

.blog-article-card .blog-featured-image {
  margin-left: -40px;
  margin-right: -40px;
  margin-top: -40px;
  margin-bottom: 30px;
  width: calc(100% + 80px);
  max-width: none;
  border-radius: 20px 20px 0 0;
}

@media (max-width: 768px) {
  .blog-card {
    width: 100%;
  }

  .blog-post-wrapper {
    background-color: var(--color-white);
  }

  .blog-article-card {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
  }

  .blog-article-card .blog-featured-image {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    width: 100%;
    border-radius: 12px;
  }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  text-align: center;
  padding: 24px 20px;
  font-size: 16px;
  color: var(--color-nav);
  background-color: transparent;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-border);
}

.site-footer a {
  color: var(--color-footer-link);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--color-teal-dark);
}

/* ========================================
   Scroll to Top
   ======================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--color-teal);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  z-index: 999;
  opacity: 0;
}

.scroll-to-top.visible {
  display: flex;
  opacity: 1;
}

.scroll-to-top:hover {
  background-color: var(--color-teal-dark);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1100px) {
  .hero-section {
    padding: 60px 40px 30px;
  }

  .products-section {
    padding: 20px 40px 80px;
  }

  .header-inner {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .page-content.about-layout {
    overflow: visible;
    padding-bottom: 0;
  }

  .about-illustration {
    position: relative;
    width: calc(100% + 32px);
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -16px;
    right: auto;
    left: 0;
    height: 301px;
    object-fit: cover;
    object-position: right bottom;
  }

  .about-text {
    max-width: 100%;
  }

  .products-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .product-card {
    flex: 0 1 auto;
    width: 280px;
    max-width: none;
  }

  .hero-content h1 {
    font-size: 56px;
  }

  .past-product-card-image {
    width: 45%;
  }

  .past-product-card-body h3 {
    font-size: 28px;
  }
}

@media (max-width: 921px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }

  .header-inner {
    height: 60px;
    padding: 0 20px;
  }

  :root {
    --header-height: 60px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    max-width: 330px;
  }

  .hero-section {
    padding: 50px 20px 20px;
  }

  .products-section {
    padding: 20px 20px 60px;
  }

  .products-grid {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .product-card {
    flex: 0 1 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .past-product-card {
    flex-direction: column;
    padding: 20px;
  }

  .past-product-card-image {
    width: 100%;
  }

  .past-product-card-body {
    padding: 10px 0;
  }

  .past-product-card-body h3 {
    font-size: 24px;
  }

  .page-content h1 {
    font-size: 36px;
  }

  .past-products-section > h1 {
    font-size: 36px;
  }

  .cta-buttons {
    flex-direction: row;
    align-items: flex-start;
  }

  .cta-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .form-group input {
    max-width: 100%;
  }

  h3 {
    font-size: 22px;
  }

  .page-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .product-card h3 {
    font-size: 22px;
  }

  .page-content {
    padding: 30px 16px 60px;
  }

  .past-products-section {
    padding: 30px 16px 60px;
  }
}
