* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ddd;
    line-height: 1.5;
}

header {
    background-color: #000000;
    color: #e91e63;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    color: #ff19A6;
}

.accented-e {
    color: #82e0a5;
}

nav a {
    color: #ff19A6;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 14px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover,
nav a.active {
    background-color: #82e0a5;
    color: #000000;
}

main {
    max-width: 960px;
    margin: 2em auto;
    padding: 0 20px;
}

h2 {
    text-align: center;
    margin-bottom: 1.5em;
    color: #ff19A6;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
    margin-bottom: 3em;
}

.package-card {
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgb(233 30 99 / 0.4);
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 6px 20px rgb(76 175 80 / 0.6);
}

.package-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #82e0a5;
    font-size: 1.4rem;
}

.package-card ul {
    list-style: inside disc;
    margin-bottom: 15px;
    padding-left: 0;
    color: #bbb;
    font-size: 1rem;
}

.more-info {
    display: none;
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.4;
}

.see-more-btn {
    background-color: #ff19A6;
    color: white;
    border: none;
    padding: 12px 36px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin: 1.5em auto 0 auto;
    width: max-content;
    text-align: center;
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.8);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.see-more-btn:hover {
    background-color: #ff19A6;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.9);
}

#contact {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgb(76 175 80 / 0.5);
    background-color: #1a1a1a;
    color: #ddd;
}

#contact h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #ff19A6;
    text-align: center;
}

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #bbb;
}

form input,
form textarea {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 16px;
    border-radius: 6px;
    border: 1px solid #555;
    font-size: 1rem;
    background-color: #222;
    color: #eee;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #82e0a5;
    background-color: #1a1a1a;
}

form button[type="submit"] {
    background-color: #ff19A6;
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.8);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #c2185b;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.9);
}

.form-message {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    color: #82e0a5;
}

footer {
    text-align: center;
    padding: 1.5em 0;
    font-size: 0.9rem;
    background-color: #000000;
    color: #777;
    margin-top: 3em;
}


@media (max-width: 600px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}