/* Reset default browser style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic body styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #111111;
}

/* Reusable container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background-color: #000000;
  color: #ffffff;
  padding: 18px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 4px;
}

.brand-name {
  font-size: 1.5rem;
  color: #ffffff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #bbbbbb;
}

/* Hero */
.hero {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000000;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #333333;
}

.hero-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.hero-image img {
  width: 250px;
  max-width: 100%;
  object-fit: contain;
}

/* Button */
.btn {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background-color: #333333;
}

.btn-light {
  background-color: #ffffff;
  color: #000000;
}

.btn-light:hover {
  background-color: #dddddd;
}

/* Sections */
.section {
  padding: 70px 0;
}

.light-section {
  background-color: #ffffff;
}

.dark-section {
  background-color: #111111;
}

.gray-section {
  background-color: #eeeeee;
}

.cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.section-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #333333;
}

.white-text {
  color: #ffffff;
}

/* Cards */
.card-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.card p {
  color: #444444;
}

.outlined {
  border: 2px solid #000000;
  box-shadow: none;
}

.testimonial-card h4 {
  margin-top: 16px;
  color: #000000;
}

/* CTA content */
.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-content p {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: #111111;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

/* Responsive design */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }
}