/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1;
}

/* Header */
header {
  background-color: #1f2937;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 10%;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

header ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header a {
  color: white;
  text-decoration: none;
}

/* Hero Section */
.hero {
  background-color: #1f2937;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 10%;
  gap: 2rem;
}

.hero-text {
    width: 220%;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: bold;
}

.hero-text p {
  margin: 1rem 0;
  color: #d1d5db;
}

.hero-text button {
  background-color: #3882f6;
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.hero-text a {
  color: white;
  text-decoration: none;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* Info Section */
.info {
  padding: 3rem 10%;
  text-align: center;
}

.info h2 {
  font-size: 36px;
  margin-bottom: 2rem;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  /* flex-wrap: wrap; */
  padding: 0 5% 3rem 5%;
}

.card {
  max-width: 200px;
}

.card img {
  border-radius: 8px;
  width: 100%;
}

.card p {
  margin-top: 0.5rem;
  color: #6b7280;
}

/* Quote Section */
.quote {
  background-color: #e5e7eb;
  padding: 4rem 20% 3rem;
}

.quote p {
  font-style: italic;
  line-height: 1.2;
  opacity: 0.5;
  font-size: larger;
  font-; 
}

.quote footer {
  text-align: right;
  font-weight: bold;
  background-color: #e5e7eb;
  color: black;
  padding-right: 2rem;
}

/* Call to Action Section */
.cta {
  background-color: #3882f6;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 10%;
  margin: 4rem 10%;
  border-radius: 8px;
  font-size: 12px;
}

.cta button {
  background-color: transparent;
  border: 1.5px solid white;
  color: white;
  padding: 0.2rem 1rem;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #1f2937;
  color: white;
  text-align: center;
  padding: 1rem;
}
