/* style.css */
body {
    font-family: 'Poppins', sans-serif; /* Requires Google Fonts import if not already present */
    margin: 0;
    background: linear-gradient(to bottom, #e0f2f7, #ffffff);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    background-color: #00bcd4;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
    background-color: #009688;
    transform: scale(1.05);
}

section {
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    margin: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    flex-grow: 1;
}

section h1 {
    color: #00bcd4;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-image {
    max-width: 450px;
    border-radius: 15px;
    margin-right: 40px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

.about-text {
    flex-grow: 1;
}

.about-text p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.highlight {
    color: #009688;
    font-weight: bold;
}

ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 25px;
    font-size: 1.1em;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
}

/* Responsive design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        margin: 0 auto 30px;
        max-width: 90%;
    }

    section {
        padding: 30px;
        margin: 20px;
    }

    section h1 {
        font-size: 2em;
    }
}