/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Outfit, sans-serif;
  background-color: #fafafa;
  color: #333;
}

/* Header & Navigation */
.header {
  background: #232526;
  padding: 1rem 0;
}

.nav {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-nav {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #e91e63;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(45vh - 80px); /* Adjust to match header/footer height */
  background: linear-gradient(
    45deg,
    #0f0f0f 0%,
    #5F5F5F 100%
  );
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-content {
  max-width: 800px;
}

.hero-logo {
  width: 300px;
  max-width: 100%;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: #fa1b3f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

.cta-button:hover {
  background: #7b0d1f;
}

.cta-button-2 {
  display: inline-block;
  background: #64c22e;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

.cta-button-2:hover {
  background: #346717;
}

/* Card Section */
.card-section {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  text-align: center;
}

.card-section h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  padding: 1rem;
}

.card-image {
  max-width: 300px;
  width: 100%;
  margin-bottom: 1rem;
}

.card-content {
  text-align: left;
}

.card-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.card-content p {
  font-size: 1rem;
  line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.testimonial {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.author {
  font-size: 0.9rem;
  color: #666;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem 0;
  background: #232526;
  color: #fff;
}
