/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 100 !important;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Box Style Like Screenshot */
.section-rounded-border {
  border: 4px solid #000;
  border-radius: 20px;
  padding: 40px 30px;
  background-color: #b2a5f7;
  box-shadow: 0 0 0 2px #000 inset;
}

/* Hero Section */
.hero-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 2rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Introduction Section */
.intro-section {
  padding: 20px;
  background-color: #fff;
}

.intro-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  text-align: center;
  color: #000;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  gap: 20px;
}

.section-line {
  flex: 1;
  height: 2px;
  background-color: #e0e0e0;
  max-width: 100px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #000;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  word-break: break-word;
}

/* Use Cases Section */
.use-cases-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}



.use-case-item {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.use-case-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 20px;
  background-color: #fff;
}

.why-choose-section .section-title {
  margin-bottom: 50px;
}

.accordion-container {
  max-width: 1500px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  cursor: pointer;
}

.accordion-item.active .accordion-header {
  background: #000;
}

.accordion-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  margin: 0;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 25px 30px;
  margin: 0;
  color: #000;
  line-height: 1.6;
  font-size: 1rem;
}
@media (max-width: 1024px) {
     .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .section-header {
    flex-direction: column;
    gap: 10px;
  }

  
}

@media (max-width: 550px) {
     .use-cases-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}