/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a0a0a;
    color: white;
    padding: 1rem 2rem;
}
.logo img {
    height: 40px;
    vertical-align: middle;
}
nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #00bfff;
}

/* Hero */
.hero {
    background: url('https://source.unsplash.com/1600x600/?server,data-center') no-repeat center center/cover;

    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Packages */
.packages {
    padding: 3rem 2rem;
    background-color: white;
    text-align: center;
}

.packages h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 1rem;
    color: #00bfff;
}

.card ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 1rem;
}

.card ul li {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #111;
}

/* About */
.about {
    padding: 3rem 2rem;
    background: #e0f7ff;
    text-align: center;
}

.about h2 {
    margin-bottom: 1rem;
}

/* Contact */
.contact {
    padding: 3rem 2rem;
    background-color: white;
    text-align: center;
}

.contact h2 {
    margin-bottom: 1.5rem;
}

.contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact button {
    padding: 0.8rem;
    background-color: #00bfff;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #009acd;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #0a0a0a;
    color: white;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .package-cards {
        flex-direction: column;
        align-items: center;
    }
}

.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    flex-wrap: wrap;
}

.about-content img {
    max-width: 100%;
    border-radius: 10px;
    width: 500px;
    height: auto;
}

.about-content p {
    max-width: 500px;
    text-align: left;
}
