@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&family=Open+Sans:wght@400;600&display=swap');

/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}


header .logo-container {
  display: flex;
  align-items: center;
}

header .logo-container img {
  height: 50px;
  width: auto;
  margin-right: 12px;
}

header .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1F4E79;
}

header .brand-name .brand-accent {
  color: #F28C28;
}

header nav .nav-link {
  margin-left: 20px;
  color: #1F4E79;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s ease-in-out;
}

header nav .nav-link:hover {
  color: #F28C28;
}

.hero {
  padding: 80px 40px;
  text-align: center;
  background-color: #1F4E79;
  color: #fff;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #F28C28;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.2s ease-in-out;
}

.cta-button:hover {
  background-color: #d97a23;
}

.features {
  padding: 60px 40px;
  background-color: #F5F5F5;
  color: #333;
}

.features h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 40px;
  font-size: 32px;
}

/* About section styling */
.about {
  padding: 60px 40px;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.about h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #1F4E79;
}

.about p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Services section styling */
.services {
  padding: 60px 40px;
  background-color: #F5F5F5;
  color: #333;
  text-align: center;
}

.services h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1F4E79;
}

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

.service {
  max-width: 320px;
  margin-bottom: 30px;
  text-align: center;
}

.service h3 {
  color: #1F4E79;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.service p {
  font-size: 16px;
}

.services .cta-button {
  margin-top: 20px;
}

/* Contact section styling */
.contact {
  padding: 60px 40px;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: #1F4E79;
}

.contact p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.contact a {
  color: #F28C28;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive layout for service cards */
@media (min-width: 768px) {
  .service-list {
    flex-direction: row;
    justify-content: space-around;
  }
  .service {
    margin-bottom: 0;
  }
}

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

.feature {
  max-width: 300px;
  margin-bottom: 30px;
  text-align: center;
}

.feature h3 {
  color: #1F4E79;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
}

footer {
  padding: 20px;
  text-align: center;
  background-color: #1F4E79;
  color: #fff;
  font-size: 14px;
}

/* Image styling for hero and services sections */
.hero-image {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
}

.ai-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 8px;
}

/* Illustration used in the About section */
.about-image {
  width: 100%;
  max-width: 600px;
  margin: 20px auto 0;
  display: block;
  border-radius: 8px;
}

/* Contact form styling */
.contact-form {
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #1F4E79;
  font-family: 'Open Sans', sans-serif;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
}

.contact-form button {
  padding: 12px 24px;
  background-color: #F28C28;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contact-form button:hover {
  background-color: #d97a23;
}

@media (min-width: 768px) {
  .feature-list {
    flex-direction: row;
    justify-content: space-around;
  }
  .feature {
    margin-bottom: 0;
  }
}