body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f9fa;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar .menu {
  display: flex;
  align-items: center;
}

.navbar .menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.navbar .menu a:hover {
  color: #007bff;
}

.navbar .cta-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background-color: #007bff;
  color: white;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.download-buttons a {
  background-color: white;
  color: #007bff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.download-buttons a:hover {
  background-color: #0056b3;
  color: white;
}

/* YouTube Section */
.youtube-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.youtube-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.youtube-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}

.youtube-container {
  max-width: 800px;
  margin: 0 auto;
}

.youtube-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background-color: #f8f9fa;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
  max-width: 200px;
  margin: 20px;
}

.feature img {
  width: 200px;
  
 
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f8f9fa;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 10px 0;
  }

  .navbar .menu.active {
    display: flex;
  }

  .navbar .menu a {
    margin: 10px 0;
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .navbar .cta-button {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .download-buttons a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .youtube-section h2 {
    font-size: 28px;
  }

  .youtube-section p {
    font-size: 16px;
  }

  .youtube-container iframe {
    height: 300px;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .download-buttons a {
    width: 100%;
    text-align: center;
  }

  .youtube-section h2 {
    font-size: 24px;
  }

  .youtube-section p {
    font-size: 14px;
  }

  .youtube-container iframe {
    height: 200px;
  }
}

/* Main Content */
.main-content {
  padding: 50px 20px;
  text-align: center;
}

.main-content h1 {
  font-size: 36px;
  margin-bottom: 40px;
}

.about-section {
  margin-bottom: 40px;
}

.about-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #007bff; /* Blue color for headings */
}

.about-section p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content h1 {
    font-size: 28px;
  }

  .about-section h2 {
    font-size: 24px;
  }

  .about-section p {
    font-size: 16px;
  }
}

/* General Styles */


/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #007bff;
}

.about-card p {
  font-size: 16px;
  color: #666;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f8f9fa;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 10px 0;
  }

  .navbar .menu.active {
    display: flex;
  }

  .navbar .menu a {
    margin: 10px 0;
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .navbar .cta-button {
    display: none;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

.main-content {
  padding: 20px;
  background-color: white;
  margin: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
  margin-top: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 15px;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #0044cc;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* General Styles */

/* Form Styles */
.form-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 20px auto; /* Center the form */
  width: 50%; /* Reduce width to 50% */
  text-align: left;
}

.form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.form-section label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

.form-section select,
.form-section textarea,
.form-section input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-section select {
  appearance: none;
  background-color: #fff;
}

.form-section textarea {
  resize: vertical;
  min-height: 100px;
}

.form-section button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.form-section button:hover {
  background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .main-content {
    padding: 10px;
  }

  .form-section {
    width: 80%; /* Adjust width for smaller screens */
    padding: 15px;
  }
}





/* Download Options */
.download-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.download-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: calc(50% - 40px);
  text-align: center;
}

.download-section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.download-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.download-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.download-button:hover {
  background-color: #0056b3;
}



/* Responsive Styles */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }

  .menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .download-section {
    width: 100%;
  }
}