/* General content container */
.content-container {
  font-family: 'Segoe UI', sans-serif;
  padding: 2rem;
  background: #fdf6ef; /* beige background */
  color: #2c1c0f; /* deep brown text */
  margin-bottom: 3rem; /* space after section */
}

/* Headings */
h2 {
  font-size: 2.4rem;
  color: #5a3b1e; /* warm brown */
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Paragraphs and list items */
p, li {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #3c2a1c;
}

/* Unordered list padding */
ul {
  padding-left: 1.5rem;
}

/* Feature grid container */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem; /* spacing after feature grid */
}

/* Individual feature card */
.feature-card {
  background: linear-gradient(to right, #d7c1a3, #e8d3b8); /* beige-brown gradient */
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(44, 28, 15, 0.1);
  border: 1px solid #c9b38b;
  text-align: center;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Image gallery grid */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 3rem; /* spacing after image gallery */
}

/* Images in gallery */
.image-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Comparison box style */
.comparison-box {
  background: #f2e7db; /* light beige */
  padding: 1.2rem;
  border-left: 4px solid #5a3b1e; /* warm brown */
  border-radius: 8px;
  font-size: 1.05rem;
  margin-bottom: 3rem; /* spacing after box */
}

/* Call to action section */
.cta-section {
  background: linear-gradient(to right, #d7c1a3, #f2e8dc); /* beige-brown gradient */
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem; /* spacing after CTA */
}

/* CTA button style */
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #2c1c0f; /* dark brown/black */
  color: white;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #000; /* solid black on hover */
}

/* Fade-in animation */
.fade-in {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Full-page banner */
.page-banner {
  height: 100vh;
  background: url('../img/sheet.png') no-repeat center center;
  background-size: cover;
  position: relative;
}

/* Banner overlay with blur and darkening */
.banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.55);
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

/* Banner title text */
.page-title {
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 600px) {
  .content-container {
    padding: 1.5rem 1rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .page-title {
    font-size: 2.2rem;
    padding: 0 1rem;
  }
}
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f2f2f2;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}



/* Feature Cards */
.features {
  padding: 60px 20px;
}
.feature-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: white;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
}
.feature-card.reverse {
  flex-direction: row-reverse;
}
.feature-card img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  height: 100%;
}
.feature-text {
  flex: 1;
  padding: 30px;
}
.feature-text h2 {
  color: #4e342e;
  font-size: 28px;
  margin-bottom: 10px;
}
.feature-text p {
  color: #555;
}

/* Call-to-Action Section */
.cta {
  background-color: #4e342e;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #d7ccc8;
}
.cta p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #d7c1a3;
}
.cta-button {
  display: inline-block;
  background: #ffffff;
  color: #4e342e;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.cta-button:hover {
  background: #d7ccc8;
  color: #3e2723;
}
/* Gallery Section */
.gallery {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}
.gallery h2 {
  color: #4e342e;
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Benefits Section */
.benefits {
  padding: 60px 20px;
  background-color: #f7f2ef;
}
.benefits h2 {
  text-align: center;
  color: #4e342e;
  margin-bottom: 20px;
}
.benefits ul {
  max-width: 800px;
  margin: auto;
  padding-left: 20px;
}
.benefits li {
  margin-bottom: 15px;
  font-size: 17px;
}



/* FAQ Section */
.faq {
  padding: 60px 20px;
  background-color: #fff;
}
.faq h2 {
  text-align: center;
  color: #4e342e;
  margin-bottom: 40px;
}
.faq-item {
  max-width: 800px;
  margin: 0 auto 30px;
}
.faq-item h3 {
  color: #3e2723;
  margin-bottom: 8px;
}
.faq-item p {
  color: #555;
  line-height: 1.5;
}

/* Hero Section with Beige Text */
.hero {
  background-color: #3e2723; /* Dark brown */
  color: #f5f5dc; /* Light beige */
  padding: 80px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 36px;
  color: #f5f5dc;
  margin-bottom: 10px;
}
.hero p {
  font-size: 18px;
  color: #f5f5dc;
}

/* Testimonial Section with Beige Text */
.testimonial {
  background-color: #4e342e; /* Darker brown */
  color: #f5f5dc; /* Light beige */
  padding: 60px 20px;
  text-align: center;
}
.testimonial h2 {
  color: #f5f5dc;
  margin-bottom: 30px;
}
.testimonial p {
  color: #f5f5dc;
  margin-bottom: 30px;
}
.testimonial-card {
  max-width: 700px;
  margin: 0 auto 30px;
  background-color: #5d4037; /* Slightly lighter brown */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #f5f5dc; /* Beige text */
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #ffe0b2; /* Light peach for names */
}


