* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    text-align: center;
    color: #333;
}

header {
    background-color: #ff6600;
    color: white;
    padding: 40px 20px;
}

header h1 {
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

.package-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px;
}

.package {
    background: white;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.package:hover {
    transform: scale(1.05);
}

h2 {
    color: #444;
}

.package ul {
    list-style: none;
    margin-top: 20px;
}

.package ul li {
    font-size: 1.2em;
    margin: 10px 0;
}

.select-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

.select-button:hover {
    background-color: #e65c00;
}

.premium {
    background-color: #ffebcc;
    border: 2px solid #ff6600;
}
