/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

h2 {
    color: #ff6b00;
}

/* Navbar */
.navbar {
  background-color: white;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  margin-right: 0.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: black;
  color: #ff6b00;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: whitesmoke;
  color: #003366;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e6b800;
}

/* Section Styles */
section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-card {
  background-color: white;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 0.5rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-toggle::after {
  content: " -";
}

.faq-toggle::after {
  content: " +";
}

.testimonials blockquote {
  font-style: italic;
  background-color: #ffffff;
  padding: 1rem;
  margin: 1rem 0;
  border-left: 4px solid #003366;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact p {
  margin: 0.5rem 0;
}

.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 2rem;
    padding: 0.75rem 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-chat:hover {
    background-color: #20b358;
}


footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

footer .social-media {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-media a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
}

.social-media a:hover {
  color: #ffcc00;
}
