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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9f9f9;
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 5%;
  background: white;
}

.hero-left {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-left h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-left .intro {
  font-size: 16px;
  color: #444;
}

.hero-right {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-illustration img {
  width: 100%;
  max-width: 350px;
}

/* Divider */
.divider {
  text-align: center;
  padding: 30px 0;
  background: white;
}

.divider img {
  width: 60%;
  max-width: 600px;
  height: auto;
}

/* Features Grid */
.features {
  padding: 60px 5%;
  background: #f4f6f9;
  text-align: center;
}

.features h2 {
  font-size: 28px;
  color: #2e2e8c;
  margin-bottom: 15px;
}

.features .description {
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.feature-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.feature-box h3 {
  font-size: 18px;
  color: #2e2e8c;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: #555;
}

/* Extra Options Section */
.feature-extra {
  background: #ffffff;
  padding: 60px 5%;
}

/* Centered Welcome */
.centered-heading {
  text-align: center;
  padding: 50px 5% 10px;
  background: #fff;
}

.centered-heading h2 {
  font-size: 22px;
  color: #2e2e8c;
}

/* ✅ Contact Section - White Theme */
.contact-section {
  background: #ffffff;
  color: #111;
  padding: 60px 5%;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h2,
.contact-info h3 {
  color: #2e2e8c;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.contact-info a {
  color: #d82a5a;
  text-decoration: none;
}

.contact-form {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
}

.contact-form h2 {
  color: #2e2e8c;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background: #f9f9f9;
  color: #111;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #d82a5a;
  color: white;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #a026d9;
  color: white;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}