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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #33333d;
  background-color: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(51, 51, 61, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff5732;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #33333d;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #ff5732;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #33333d;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(255, 87, 50, 0.1) 0%, rgba(255, 87, 50, 0.05) 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero-image {
  margin-bottom: 48px;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(51, 51, 61, 0.1);
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 24px;
  color: #33333d;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.8;
  color: #33333d;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, rgba(255, 87, 50, 0.1) 0%, rgba(255, 87, 50, 0.05) 100%);
  text-align: center;
}

.back-button {
  display: inline-block;
  margin-bottom: 24px;
  color: #ff5732;
  text-decoration: none;
  font-weight: 500;
}

.back-button:hover {
  text-decoration: underline;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #33333d;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  color: #33333d;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
  color: #33333d;
}

.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #33333d;
}

.prose p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #33333d;
  opacity: 0.8;
}

/* Features Grid */
.features {
  padding: 80px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 32px;
  background: rgba(255, 87, 50, 0.05);
  border-radius: 12px;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #33333d;
}

.feature-card p {
  color: #33333d;
  opacity: 0.8;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(51, 51, 61, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 24px;
}

.product-category {
  background-color: rgba(255, 87, 50, 0.1);
  color: #ff5732;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 12px 0 8px;
  color: #33333d;
}

.product-description {
  color: #33333d;
  opacity: 0.8;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ff5732;
}

.product-button {
  background-color: #ff5732;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background-color 0.3s;
}

.product-button:hover {
  background-color: #e54a2e;
}

/* FAQ Styles */
.faq-section {
  padding: 60px 0;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #33333d;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-list {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(51, 51, 61, 0.1);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(51, 51, 61, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: #33333d;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: rgba(255, 87, 50, 0.05);
}

.faq-icon {
  transition: transform 0.3s;
  color: #ff5732;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(255, 87, 50, 0.02);
}

.faq-answer.active {
  max-height: 200px;
  padding: 0 24px 24px;
}

/* Contact Styles */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
}

.contact-info,
.contact-form {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(51, 51, 61, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 87, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff5732 0%, #e54a2e 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #ff5732;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #33333d;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}
