* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background: #1d1e2c;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #fbbc04;
}

.section {
  padding: 80px 20px;
  text-align: center;
}

.hero {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: white;
}

h1, h2 {
  margin-bottom: 20px;
}

.btn {
  padding: 0.7rem 1.5rem;
  background: #fbbc04;
  color: #000;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  margin-top: 1rem;
}

.btn:hover {
  background: #ffce36;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: #f1f1f1;
  padding: 1.5rem;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.download-buttons a {
  margin: 0 10px;
}



footer {
  background: #1d1e2c;
  color: #fff;
  padding: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .features-grid {
    flex-direction: column;
  }
}


.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image img {
  width: 30%;
  min-width: 100px;
  max-width: 150px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-image img {
    width: 45%;
    max-width: 100%;
  }
}


.community-section p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.community-visuals {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}



.contact-section {
  padding: 4rem 2rem;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2196f3;
  outline: none;
}

.contact-form button.btn {
  align-self: center;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  background-color: #2196f3;
  color: white;
  border: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.contact-form button.btn:hover {
  background-color: #1976d2;
}


.social-contact {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #444;
}

.social-link {
  color: #2196f3;
  text-decoration: none;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #1976d2;
}