@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo {
    max-width: 60px;
    height: auto;
}

.header {
    background-color: #1F2937;
    padding: 10px 100px 40px 100px;
}

.header-info,
.header-image {
    flex: 1;
}
.header-image img {
    width: 100%;
    height: auto;
}

.header ul {
    list-style-type: none;
    display: flex;
    gap: 24px;
}

.header ul a {
    text-decoration: none;
    color: #E5E7EB;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.header-content h1 {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
}

.header-content p {
    font-size: 18px;
    color: #E5E7EB;
}

.header-logo-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.header-info button {
    background-color: #3882F6;
    color: white;
    padding: 6px 18px;
    border-radius: 8px;
    margin-top: 8px;
}

.boxes div {
  width: 200px;
  text-align: center;
  margin-bottom: 16px;
}

.information {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.boxes {
    display: flex;
    gap: 48px;
}

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

.boxes div img {
    width: 100%;
    height: 150px;
    border: 2px solid #3882F6;
    border-radius: 8px;
    object-fit: cover;
}

.boxes div p {
    padding: 10px;
}

.quote {
    background-color: #E5E7EB;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-text {
    font-style: italic;
    font-size: 36px;
    color: #1F2937;
    font-weight: 300;
}

.quote-container {
    padding: 0 20px;
}

.author {
    text-align: right;
    font-size: 20px;
}

.cta-container {
    background-color: #3882F6;
    color: white;
    padding: 40px 80px;
    border-radius: 10px;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 100px;
}

.call-to-action {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-text-heading {
    font-size: 24px;
}

.cta-button button {
    color: white;
    background-color:  #3882F6;
    border: 2px solid white;
    border-radius: 8px;
    padding: 6px 18px;
}

.cta-button button:hover, .header-info button:hover {
    background-color: white;
    color:  #3882F6;
    cursor: pointer;
}

.footer-content {
    color: white;
}

.footer {
    background-color: #1F2937;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}