
body {
    margin: 0;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background-color: #F4F2F9;
    color: #222;
    line-height: 1.8;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.logo img {
    height: 90px;
    margin: 1rem 0;
}

.banner img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 0;
}

nav ul {
    background-color: #4B2D8A;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #3b2371;
}

main {
    padding: 40px 20px;
}

h1, h2, h3 {
    color: #4B2D8A;
    margin-top: 0;
}

section {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    margin: 40px auto;
    padding: 30px;
    max-width: 1000px;
}

section img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

footer {
    background-color: #2a1d50;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.95em;
}

button, input[type="submit"] {
    background-color: #4B2D8A;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, input[type="submit"]:hover {
    background-color: #36206b;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}


.image-text-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.image-text-block.reverse {
    flex-direction: row-reverse;
}

.image-text-block img {
    max-width: 45%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.image-text-block:hover img {
    transform: scale(1.03);
}

.image-text-block .text {
    flex: 1;
    min-width: 280px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
