* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #007BFF;
    color: white;
    padding: 20px;
    text-align: center;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #007BFF;
}

p, ul {
    margin-top: 10px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

img {
    width: 100px;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 10px;
    background: #007BFF;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    section {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }

    img {
        max-height: 200px;
    }
}
