* {
    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: #333;
    color: #fff;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
}

nav a:hover {
    background: #555;
    border-radius: 5px;
}

section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
}

section h1 {
    min-width: 8ch;
   
}

section p {
    margin-bottom: 1rem;
    text-align: justify;
    flex: 2;
}

section img {
    max-width: 200px;
    height: auto;
    margin-left: 2rem;
    border-radius: 5px;
    flex: 1;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

footer p {
    margin-bottom: 1rem;
}

footer a {
    color: #00f;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 728px) {
    nav {
        flex-direction: column;
    }

    nav a {
        margin: 0.5rem 0;
    }

    section {
        flex-direction: column;
        margin: 1rem;
        padding: 1rem;
    }

    section img {
        max-width: 100%;
        margin: 1rem 0;
    }

    section h1 {
        font-size: 1.5rem;
    }
}