/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
}

body {
  background-color: white;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Section 1: Header Section - 80px height */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: white;
  z-index: 1000;
  position: relative;
}

/* Header Logo */
.header-logo-container {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
}

.header-logo {
  max-width: 150px;
  height: auto;
  display: block;
}

/* Animated Sale Banner */
.sale-banner {
  height: 31px;
  background: linear-gradient(45deg, #000, #8B4CB8, #000);
  overflow: hidden;
  position: relative;
}

.sale-text-container {
  display: flex;
  animation: scroll-banner 20s linear infinite;
  white-space: nowrap;
  align-items: center;
  height: 100%;
  will-change: transform;
}

.sale-text-group {
  display: flex;
  gap: 50px;
  flex-shrink: 0;
  padding-right: 50px;
}

.sale-text {
  color: white;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Navigation Bar */
.nav-bar {
  height: 49px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

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

.burger-btn {
  order: -1;
  margin-right: auto;
  margin-left: -10px;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 17px;
  color: #333;
  cursor: pointer;
  padding: 2px;
  transition: color 0.3s ease;
}

.icon-btn:hover {
  color: #8B4CB8;
}

/* Section 3: Main Product Section - 138vh (120vh + 15%) */
.main-product-section {
  min-height: 90vh;
  background-color: white;
  padding: 10vh 20px 40px;
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

/* Product Image Section */
.product-image-section {
  flex: 1;
  max-width: 700px;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 0;
}

/* Glowing Frame */
.carousel-frame {
  position: relative;
  width: 450px;
  height: 650px;
  background: transparent;
  border: 3px solid rgba(139, 76, 184, 0.6);
  border-radius: 20px;
  box-shadow: 
    0 0 20px rgba(139, 76, 184, 0.4),
    0 0 40px rgba(139, 76, 184, 0.2),
    inset 0 0 20px rgba(139, 76, 184, 0.1);
  overflow: hidden;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%;
}

/* Carousel Slide */
.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Carousel Product Images */
.carousel-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Glassmorphic Arrow Buttons */
.carousel-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(139, 76, 184, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 76, 184, 0.5);
}

.carousel-arrow:hover {
  background: rgba(139, 76, 184, 0.6);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(139, 76, 184, 0.7);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

/* Arrow Icons (White Triangles) */
.arrow-icon {
  width: 0;
  height: 0;
  border-style: solid;
}

.arrow-left {
  border-width: 10px 15px 10px 0;
  border-color: transparent white transparent transparent;
  margin-left: -3px;
}

.arrow-right {
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent white;
  margin-right: -3px;

}

/* Product Container */
.product-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
  padding: 0 50px;
}

/* Product Details */
.product-details {
  flex: 1;
  max-width: 600px;
  padding-left: 20px;
}

.product-title {
  font-size: 2.5em;
  color: black;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.product-description {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.buy-button {
  background-color: #FFD700;
  color: black;
  border: none;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.buy-button:hover {
  background-color: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Content Sections - 115vh each (100vh + 15%) */
.content-section {
  min-height: 115vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.section-content {
  text-align: center;
  width: 100%;
}

.section-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.section-content p {
  font-size: 1.2em;
  line-height: 1.6;
}

/* Section 3: Light Grey Background */
.section-3 {
  background-color: #f5f5f5;
}

/* Section 4: White Background */
.section-4 {
  background-color: white;
}

/* Features Grid Styling */
.features-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon-container {
  width: 80px;
  height: 80px;
  background: rgba(139, 76, 184, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature-icon-container i {
  font-size: 2.2em;
  color: #8B4CB8;
}

.feature-icon-container:hover {
  background: rgba(139, 76, 184, 0.15);
  transform: translateY(-3px);
}

.feature-item-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-item-description {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* Responsive Design for Features Grid */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .features-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
  
  .feature-icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .feature-icon-container i {
    font-size: 1.8em;
  }
  
  .feature-item-title {
    font-size: 1.2em;
  }
  
  .feature-item-description {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .features-grid {
    gap: 25px;
  }
  
  .features-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  
  .feature-icon-container {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon-container i {
    font-size: 1.5em;
  }
}

/* Section 5: Video Content Section */
.section-5 {
  background-color: #f5f5f5;
  min-height: 150vh;
}

.video-content-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 80px 60px;
  margin: 0;
  width: 100%;
  min-height: 150vh;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

  .video-content-container:before {
    content: '';
    position: absolute;
    top: 0; /* Corrected height to align with edges */
    left: 0; /* Corrected width to align with edges */
    right: 0; /* Corrected width to align with edges */
    bottom: 0; /* Corrected height to align with edges */
    background: linear-gradient(135deg, rgba(139, 76, 184, 0.05) 0%, rgba(107, 70, 193, 0.05) 100%);
}

.video-content-container video {
  width: 100%;
  max-width: 1200px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Section 6: Feature Cards Section */
.section-6 {
  background-color: #f5f5f5;
  min-height: 270vh;
}

/* Glassmorphic Cards */
.feature-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 76, 184, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(31, 38, 135, 0.3);
}

.feature-card:hover:before {
  opacity: 1;
}

.feature-icon {
  font-size: 3.5em;
  color: #8B4CB8;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

.feature-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
}

.feature-description {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}

.feature-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  z-index: 2;
  position: relative;
}

.feature-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0.3) 100%
  );
  border-radius: 20px;
  pointer-events: none;
  z-index: 3;
}

.feature-card-image::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 30%;
  height: 30%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
  z-index: 4;
}

/* Section 7: White Background */
.section-7 {
  background-color: white;
}

/* Section 8: Light Grey Background */
.section-8 {
  background-color: #f5f5f5;
}

/* FAQ Styling */
.faq-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.faq-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}

.faq-item {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.15);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
  color: #333;
  font-size: 0.9em;
  line-height: 1.4;
  min-height: 52px;
  flex-grow: 1;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-plus {
  background-color: #8B4CB8;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  margin-top: 2px;
  font-size: 14px;
  font-weight: bold;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-question span:last-child {
  flex: 1;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.faq-answer.open {
  max-height: 200px;
  padding: 15px;
  font-size: 0.85em;
  line-height: 1.5;
}

/* Video Carousel Styling */
.video-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.video-carousel {
  display: flex;
  gap: 15px;
  overflow: visible;
  scroll-behavior: smooth;
  padding: 60px 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 550px;
  width: 100%;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-slot {
  flex-shrink: 0;
  width: 180px;
  height: 320px;
  position: relative;
  transition: all 0.4s ease;
  transform-origin: center;
}

.video-slot:nth-child(3) {
  /* Center video - largest */
  width: 240px;
  height: 427px;
  transform: scale(1);
  z-index: 3;
}

.video-slot:nth-child(2),
.video-slot:nth-child(4) {
  /* Second from center - medium */
  width: 210px;
  height: 373px;
  transform: scale(0.95);
  z-index: 2;
}

.video-slot:nth-child(1),
.video-slot:nth-child(5) {
  /* Outer videos - small */
  width: 180px;
  height: 320px;
  transform: scale(0.85);
  opacity: 0.8;
  z-index: 1;
}

.video-slot:nth-child(n+6) {
  /* Videos beyond the 5th - hidden */
  display: none;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.video-thumbnail:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.video-thumbnail.video-active {
  background: linear-gradient(135deg, #8B4CB8 0%, #6B46C1 100%);
  box-shadow: 0 12px 30px rgba(139, 76, 184, 0.5);
}

.video-slot:nth-child(3) .video-thumbnail.video-active {
  transform: scale(1.02);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #333;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  text-align: center;
}

.video-title {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 8px;
}

.video-subtitle {
  font-size: 0.85em;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0.9;
}

.game-count {
  font-size: 0.9em;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 10px;
  display: inline-block;
}

.carousel-btn {
  background: rgba(139, 76, 184, 0.8);
  color: white;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 24px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-prev {
  left: -35px;
}

.carousel-next {
  right: -35px;
}

.carousel-btn:hover {
  background: #8B4CB8;
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

/* Responsive Design for Video Carousel */
@media (max-width: 768px) {
  .video-carousel-container {
    gap: 15px;
    margin: 20px auto;
    padding: 0 20px;
  }

  .video-carousel {
    min-height: 320px;
    gap: 8px;
    padding: 30px 8px;
  }

  .video-slot {
    width: 90px;
    height: 160px;
  }

  .video-slot:nth-child(3) {
    width: 110px;
    height: 196px;
  }

  .video-slot:nth-child(2),
  .video-slot:nth-child(4) {
    width: 100px;
    height: 178px;
  }

  .play-button {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .video-overlay {
    padding: 8px;
  }

  .video-title {
    font-size: 0.7em;
  }

  .video-subtitle {
    font-size: 0.55em;
  }

  .game-count {
    font-size: 0.6em;
    padding: 2px 4px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .video-carousel-container {
    flex-direction: column;
    gap: 15px;
  }

  .carousel-btn {
    display: none;
  }

  .video-carousel {
    overflow-x: auto;
    padding: 10px;
  }
}

/* Section 8: Footer Section - Black Background */
.footer-section {
  background-color: black;
  color: #ccc;
  padding: 40px 20px 20px;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  align-items: center;
}

.footer-column h3 {
  color: white;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.footer-column h4 {
  color: #ccc;
  font-size: 1.2em;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

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

.social-icons a {
  color: #ccc;
  font-size: 1.5em;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #333;
}

/* Responsive Design for Video Content Container */
@media (max-width: 768px) {
  .video-content-container {
    padding: 60px 30px;
    margin: 0;
    width: 100%;
    min-height: 150vh;
  }
}

@media (max-width: 480px) {
  .video-content-container {
    padding: 40px 20px;
    margin: 0;
    width: 100%;
    min-height: 150vh;
  }
}

/* Responsive Design for Feature Cards */
@media (max-width: 768px) {
  .feature-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .feature-card {
    min-height: 480px;
    padding: 32px 20px;
  }
  
  .feature-icon {
    font-size: 2.8em;
    margin-bottom: 15px;
  }
  
  .feature-title {
    font-size: 1.3em;
    margin-bottom: 12px;
  }
  
  .feature-description {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .feature-cards-container {
    padding: 0 10px;
    margin-top: 20px;
  }
  
  .feature-card {
    min-height: 420px;
    padding: 28px 15px;
  }
  
  .feature-icon {
    font-size: 2.5em;
  }
  
  .feature-title {
    font-size: 1.2em;
  }
  
  .feature-description {
    font-size: 0.85em;
  }
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    text-align: center;
  }

  .product-details {
    padding-left: 0;
    margin-top: 30px;
  }

  .product-title {
    font-size: 2em;
  }

  .carousel-container {
    gap: 15px;
    margin-top: -60px;
  }

  .carousel-frame {
    width: 350px;
    height: 500px;
  }

  .carousel-arrow {
    width: 50px;
    height: 50px;
  }

  .arrow-left {
    border-width: 8px 12px 8px 0;
  }

  .arrow-right {
    border-width: 8px 0 8px 12px;
  }

  .nav-icons {
    gap: 10px;
  }

  .icon-btn {
    font-size: 12px;
  }

  .sale-text {
    font-size: 10px;
    margin-right: 10px;
  }

  .section-content h2 {
    font-size: 2em;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .faq-container {
    flex-direction: column;
    gap: 20px;
  }

  .faq-question {
    font-size: 0.85em;
    padding: 10px 12px;
  }

  .faq-plus {
    width: 18px;
    height: 18px;
    font-size: 12px;
    margin-right: 10px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .main-product-section {
    padding: 20px 15px;
  }

  .product-title {
    font-size: 1.8em;
  }

  .product-description {
    font-size: 1em;
  }

  .buy-button {
    padding: 12px 24px;
    font-size: 1em;
  }

  .content-section {
    padding: 20px 15px;
  }

  .section-content h2 {
    font-size: 1.8em;
  }

  .section-content p {
    font-size: 1em;
  }

  .nav-icons {
    gap: 8px;
  }

  .sale-text {
    font-size: 9px;
    margin-right: 8px;
  }

  .footer-section {
    padding: 30px 15px 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-column h3 {
    font-size: 1.3em;
  }

  .footer-column h4 {
    font-size: 1.1em;
  }
}

/* Large Screen Styles */
@media (min-width: 1200px) {
  .product-container {
    max-width: 1400px;
    gap: 60px;
  }

  .product-title {
    font-size: 3em;
  }

  .product-description {
    font-size: 1.2em;
  }

  .section-content h2 {
    font-size: 3em;
  }

  .section-content p {
    font-size: 1.3em;
  }
}