body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}
header {
    background: linear-gradient(45deg, #0033cc, #0055ff);
    color: white;
    padding: 20px;
    text-align: center;
}
header .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
header .logo {
    max-width: 80px;
    margin-right: 20px;
}
nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
section {
    margin-bottom: 40px;
}
section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #0033cc;
}
.pave {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}
.pave img {
    max-width: 50%;
    object-fit: cover;
    height: auto;
}
.pave p {
    padding: 20px;
    font-size: 1.2em;
    flex: 1;
}
.pave.inverse {
    flex-direction: row-reverse;
}
footer {
    text-align: center;
    padding: 10px;
    background: #0055ff;
    color: white;
    font-size: 0.9em;
}
@media (max-width: 768px) {
    .pave {
        flex-direction: column;
    }
    .pave img {
        max-width: 100%;
    }
    .pave.inverse {
        flex-direction: column;
    }
}
