body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo img {
    max-width: 150px;
}

.hero {
    padding-top: 100px; /* Add padding to prevent content from hiding behind the fixed header */
}

.hero img {
    width: 100%;
}

.hero-text {
    max-width: 300px;
}

.content {
    margin-bottom: 20px;
}

.content .textbox {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: slide-in 1s ease-out forwards;
}

@keyframes slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-text.animate-slide-in {
    animation: slide-in 1s ease-out forwards;
}

.list-section {
    background-color: #E0E7F8; /* Softer blue background */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.list-section .point {
    background-color: #D0DAF5; /* Lighter blue background for points */
}

.point p {
    color: #001ca4; /* Dark blue text */
}

.gallery .img-fluid {
    margin-bottom: 15px;
}

.footer-links {
    text-align: center;
    padding: 20px;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
}
