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

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1f2937;
}

.navbar {
    display: flex;
    justify-content: space-around;
    padding: 18px 0;
}

.logo p {
    font-size: 24px;
    font-weight: 700;
    color: #f9faf8;
    margin-right: 20px;
}

.nav-list {
    display: flex;
    padding: 4px;
}

.nav-list li {
    list-style: none;
    margin-left: 26px;
}

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

@media (max-width: 768px) { 
    .navbar {
        padding: 18px;
    }
    .logo p {
        font-size: 22px;
    }
    .nav-list li {
        margin-left: 22px;
    }
    .nav-item a {
         font-size: 16px;
    }
}

/* Hero Main */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8%;
}

.hero-container {
    display: flex;
    justify-content: center;
    gap: 52px;
}

@media (max-width: 992px) { 
    .hero-container {
        flex-wrap: wrap-reverse;
    }
}

.hero-text { 
    display: flex;
    flex-direction: column;
    padding: 0 3% 0 7%;
}

.hero-text h1 {
    color: #f9faf8;
    font-weight: 700;
    font-size: 48px;
}

.hero-text p {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 12px;
}

@media (max-width: 768px) {  
    .hero-text {
        padding: 0;
    }
    .hero-text h1 {
        font-size: 42px;
    }
    .hero-text p {
        font-size: 16px;
    }
}

.btn button {
    background-color: #3882f6;
    border: none;
    color: #f9faf8;
    font-weight: 700;
    font-size: 18px;
    padding: 9px 35px;
    border-radius: 9px;
}

.hero-image {
    display: flex;
    padding: 0 7% 0 3%;
}

.hero-image img{
    width: 522px;
    height: 237px;
}

@media (max-width: 768px) { 
    .hero-image {
        padding: 0;
        max-width: 100%;
    }
    .hero-image img {
        width: 100%;
        height: auto;
    }
}

/* Information */
.info {
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-title {
    padding: 50px 0;
}

.info-title h2 {
    font-size: 36px;
    color: #1f2937;
    text-align: center;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 100px;
}

.info-items {
    width: 192px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-items img{
    width: 168px;
    height: 168px;
    border: 4px solid #3882f6;
    border-radius: 15px;
}

.info-items p {
    color: #1f2937;
    text-align: center;
    margin: 10px 5px;
    font-size: 18px;
} 

@media (max-width: 768px) { 
    .info-title h2 {
        font-size: 32px;
    }
}

/* Quote */
.quote-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e5e7eb;
    width: 100%;
    height: 430px;
    padding: 0 22%;
    color: #1f2937;
}

.quote {
    margin: 50px 5px;
}

.quote blockquote cite {
    font-size: 36px;
    font-weight: 300;
}

@media (max-width: 768px) { 
    .quote-container {
        padding: 0 5%;
    }
    .quote blockquote cite {
        font-size: 30px;
    }
}

.quote figcaption {
    font-weight: 700;
    font-size: 24px;
    text-align: end;
    margin-right: 50px;
}

/*  Last Section */
.last-container {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 50px;
}

.last {
    display: flex;
    align-items: center;
    gap: 100px;
    background-color: #3882f6;
    border-radius: 9px;
    padding: 50px 100px;
    color: #fff;
}

.last-text h3 {
    font-size: 24px;
}

.last-text p {
    color: #e5e7eb;
    font-size: 18px;
}

.last button {
    border: 2px solid #fff;
    border-radius: 5px;
    background-color: transparent;
    color: #fff;
    padding: 5px 25px;
    font-size: 18px;
}

@media (max-width: 768px) { 
    .last-container {
        padding: 50px;
    }
    .last {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 25px;
        gap: 25px;
    }
    .last-text h3 {
        font-size: 22px;
    }
    .last-text p {
        font-size: 18px;
    }
    .last button {
        font-size: 16px;
    }
}

/* Footer */
footer {
    color: #f9faf8;
    padding: 40px;
}

footer p {
    font-size: 18px;
    text-align: center;
}