body{
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;   
}

.nav,
.hero {
background-color: #1F2937; 
}

/*Navigation Bar:*/

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.links {
  display: flex;
  gap: 16px;
  margin-right: 100px;
}

.nav h3 {
  font-size: 24px;
  color: #F9FAF8;
  margin-left: 100px;
}

.nav a {
  text-decoration: none;
  font-size: 18px;
  color: #E5E7EB;
}

/*Hero Section:*/

.hero {
  display: flex;
  justify-content: center;   
  align-items: center;       
  gap: 50px;                 
  padding: 90px;
}

.hero_left {
  max-width: 500px;         
  display: flex;
  flex-direction: column;
  justify-content: center;   
  flex: 1;  
}

.hero_left h1 {
  font-size: 48px;
  font-weight: 900;
  color: #F9FAF8;
  margin-bottom: 0px;
  line-height: 1; 
}

.hero_left p {
  font-size: 18px;
  color: #E5E7EB;
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 400px;   
  line-height: 1; 
}

.hero_left button {
  background-color: #3882F6;
  color: #F9FAF8;
  border: none;
  border-radius: 10px;
  padding: 8px 40px;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
}

.hero_left button:hover {
  background-color: white;
  color: #3882f6;
}

.hero_right {
  display: flex;
  align-items: center;       
}

.hero_right img {
  border: 3px solid #3882F6;
  width: 500px;
  height: 350px;
  object-fit: cover;         
}


/*Picture Section:*/

.picture_section {
  display: flex;
  justify-content: center;

}

.picture_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.picture_content h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1F2937;
}

.picture_row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 16px;

}

.picture_row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.picture_row img {
  border: 3px solid #3882F6;
  border-radius: 10px;
}


/*Quote Section:*/

.quote_section {
  background-color: #E5E7EB;
  padding: 50px;
}

.quote {
  display: flex;
  justify-content: center;

}

.quote p {
  font-size: 36px;
  font-weight: 300;
  color: #1F2937;
  margin-bottom: 0px;
}

.quote_name {
  display: flex;
  justify-content: flex-end;
}

/*sign_up_banner Section:*/

.sign_up_banner {
  background-color: #3882f6;   
  color: white;               
  display: flex;              
  align-items: center;
  padding: 30px 60px;         
  border-radius: 10px;        
  max-width: 900px;           
  margin: 50px auto;          
}

.banner_text h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.banner_text p {
  margin: 5px 0 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.banner_button button {
  background-color: transparent; 
  color: white;
  border: 2px solid white;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 50px;
}

.banner_button button:hover {
  background-color: white;
  color: #3882f6;
}


/*footer section:*/

.footer {
  background-color: #1F2937;
}

.footer_text {
  text-align: center;
  color: #FFFFFF;
}
