
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #fdfdfd;
    color: #333;
}

header {
    background-color: #005F73;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

h1, h2 {
    color: #0A9396;
}

ul, ol {
    margin-left: 20px;
    line-height: 1.6;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.gallery img {
    width: 200px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}
