body {
    font-family: "Open Sans", Arial, sans-serif;
    color: rgb(58, 58, 58);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5; /* Sets line spacing to 1.5 times the font size */
}

header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #eee;
}

.header-content {
    display: flex;
    align-items: left;
    justify-content: left;
    width: 100%;
}

.logo {
    width: 280px;
    margin-right: 10px;
}

.blue-section {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}
.blue-section h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 0;
}

.info-section {
    background-color: #f4f4f4;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: left;
}

.info-content {
    max-width: 600px;
    padding: 10px;
}

.info-content h2 {
    font-size: 24px;
}

.info-content a {
    color: #e74c3c;
    text-decoration: none;
}

.info-image img {
    width: 200px;
}

.about-section {
    background-color: #fff;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: left;
}

.about-content {
    max-width: 600px;
    padding: 10px;
}

.about-logo {
    width: 100px;
    margin-bottom: 20px;
}

footer {
    background-color: #3498db;
    color: #fff;
    padding: 20px 0;
}

.footer-content  {
    max-width: 600px;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    align-items: left;
    justify-content: left;
}

.footer-left {
    width: 50%;
}

.footer-right {
    width: 50%;
}

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
    }
    .about-section {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-left {
        width: 80%;
    }
    
    .footer-right {
        width: 80%;
    }
}