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

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

body {
    font-family: 'Roboto';
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

header {
    background-color: #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15%;
}

.logo {
    font-size: 24px;
    color: #F9FAF8;
    font-weight: bold;
}

header ul {
    display: flex;
    gap: 24px;
}

header a {
    font-size: 18px;
    color: #E5E7EB;
}

.hero {
    background-color: #1F2937;
    color: #F9FAF8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 15%;
    gap: 32px;
}

.hero .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

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

.hero-left p {
    font-size: 18px;
    color: #E5E7EB;
    line-height: 1.5;
}

.hero button {
    background-color: #3882F6;
    color: white;
    font-weight: bold;
    padding: 8px 32px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-top: 8px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    background-color: gray;
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 250px;
    display: block;
}

.info {
    padding: 64px 15%;
    text-align: center;
}

.info h2 {
    font-size: 36px;
    font-weight: 900;
    color: #1F2937;
    margin-bottom: 48px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.card {
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.box {
    width: 150px;
    height: 150px;
    border: 4px solid #3882F6;
    border-radius: 16px;
    margin-bottom: 12px;
}

.quote-section {
    background-color: #E5E7EB;
    padding: 100px 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

blockquote {
    font-size: 36px;
    font-style: italic;
    font-weight: lighter;
    color: #1F2937;
    margin-bottom: 16px;
}

figcaption {
    align-items: end;
    font-weight: bold;
    font-size: 24px;
    color: #1F2937;
}

.cta-section {
    padding: 100px 15%;
    display: flex;
    justify-content: center;
}

.cta-container {
    background-color: #3882F6;
    color: white;
    padding: 48px 80px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cta-left h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.cta-left p {
    font-size: 18px;
    font-weight: lighter;
}

.cta-right button {
    background-color: #3882F6;
    color: white;
    border: 2px solid white;
    padding: 8px 32px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}

footer {
    background-color: #1F2937;
    color: #E5E7EB;
    text-align: center;
    padding: 32px;
    margin-top: auto;
}