/* General body styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: black;
    color: yellow;
}

/* Side navigation */
.sidenav {
    height: 100%;
    width: 200px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #111;
    padding-top: 20px;
}

.sidenav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    background-color: #575757;
}

/* Main sections */
.page {
    margin-right: 220px;
    /* leave space for sidenav */
    padding: 40px;
    min-height: 100vh;
    animation: fadeIn 0.6s ease-in-out;
}

h1,
h2 {
    color: #ffcc00;
}

/* Packages flexbox */
.package-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.package-box {
    background: #222;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 0 10px #333;
    transition: transform 0.3s;
}

.package-box:hover {
    transform: scale(1.05);
    background: #333;
}

.package-box h3 {
    color: #00eaff;
}

.price {
    font-size: 1.3rem;
    color: #ff5733;
    font-weight: bold;
}

/* Contact links */
#contact ul {
    list-style: none;
    padding: 0;
}

#contact li {
    margin: 10px 0;
}

#contact a {
    color: #00ff99;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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