* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 30px 20px;
}

header h1 {
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

.section {
    margin-top: 40px;
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.section .content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section img {
    max-width: 50%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section p {
    font-size: 1.1em;
    color: #555;
}

.footer {
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 20px;
    margin-top: 40px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .section .content {
        flex-direction: column;
        text-align: center;
    }

    .section img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    header p {
        font-size: 1em;
    }

    .section h2 {
        font-size: 1.6em;
    }

    .section p {
        font-size: 1em;
    }

    footer {
        font-size: 0.9em;
    }
}
