body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8fcff;
    color: #333;
}

/* Header */
.header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 20px;
    background-color: #ecf5fc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

.logo img {
    width: clamp(60px, 10vw, 100px);
}

.header-title {
    text-align: center;
}

.header-title h1 {
    font-size: 1.8em;
    margin: 0;
}

.home-button {
    text-align: right;
}

.home-button a {
    background-color: #0077cc;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.home-button a:hover {
    background-color: #005fa3;
}

/* About Section */
.about-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* Footer */
.footer {
    background-color: #ecf5fc;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #555;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 500px) {
    .header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-button {
        margin-top: 10px;
    }

    .about-content p {
        text-align: left;
    }
}