html{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    scroll-behavior: smooth;
}

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

.header-content{
   display: flex;
   justify-content: space-between;
   align-items: center;
   background-color: #1f2937;
   padding: 50px;

}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.logo {
    color: #F9FAF8;
    font-size: 24px;
    font-weight: 800;
}

.header li a{
    color: #cacaca;
    font-size: 18px;
    text-decoration: none;
    padding: 20px;
    transition: color 0.3s ease
}

.header li a:hover {
    color:#ffffff;
}

.hero {
    display: flex;
    justify-content: space-between;
    background-color:#1f2937;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    max-width: 70%;
    padding: 50px;
}

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

.hero-text-content p{
    color: #E5E7EB;
    font-size: 18px; 
    padding: 20px 0;
    flex-wrap: wrap;
}

button{
    background-color: rgb(57, 113, 225);
    color:#F9FAF8;
    padding: 10px 20px;
    text-decoration: none;
    border-style: none;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 80px 0;
    font-size: 15px;
    transition: background-color 0.3s ease;    
}

.hero-content button:hover{
    transform: scale(1.05);
    background-color: rgb(38, 82, 246);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.hero-image{
    max-width: 30%;
    padding: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);    
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-content {
    max-width: 800px;
    text-align: center;
    padding: 40px 20px;
}

.about-content h2 {
    color:#1f2937;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
}

.info-content{
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.info-content .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 200px;
    height: 200px;
    max-width: 300px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    border: 2px solid rgb(38, 82, 246);
    background-color: aliceblue;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    border-radius: 10px;
}

.quote{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E5E7EB;
}
.quote-content {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}
.quote-content p {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    color: #1f2937;
}
.quote-content .quote-author {
    align-self: flex-end;
    font-size: 15px;
    margin-top: 10px;
}
.cta-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
}

.cta-content{
    background-color: #3882F6;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 20px 50px ;
    
}
.cta-2box{
    padding: 10px;
    margin: 10px;
}

.cta-2box h2{
     color:#F9FAF8;
}

.cta-2box p{
    color:#E5E7EB;
}
.subscribe{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    padding: 10px;
}
.subscribe-button{
    border: 1.5px solid white;
    margin: 10px;
}
.subscribe-button:hover{
    background-color: rgb(38, 82, 246);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.input input {
    border: none;
    border-radius: 5px;
    padding: 10px;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1f2937;
    color:#E5E7EB;
    padding: 30px;
}