body {
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: #0e64aa;
}

h1, h2, h3 {
    color: #0e64aa;
}

a {
    color: #0ba881;
    text-decoration: underline;
}

ul {
    color: #0e64aa;
}

.btn {
    display: inline-block;
    background: #0ba881;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #088964;
}

.page-title {
    text-align: center; 
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}