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

header {
    background: #0073e6;
    color: white;
    padding: 20px;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
/* Center all tables */
table {
    border-collapse: collapse;
    width: 50%; /* Adjust as needed */
    margin: 20px auto; /* Centers the table horizontally */
    text-align: center;
}

/* Styling for table headers and cells */
th, td {
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 18px;
}

/* Header style */
th {
    background-color: #007bff;
    color: white;
}

/* Cell background */
td {
    background-color: #f9f9f9;
}
form {
    width: 60%; /* Adjust width */
    margin: 20px auto; /* Center the form */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h1, p {
    text-align: center;
}

label {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.checkbox-group label {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

button {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
.checkbox-group {
    display: flex;
    flex-direction: column; /* Stack checkboxes vertically */
    gap: 10px; /* Adds space between checkboxes */
    margin-bottom: 15px;
}

.checkbox-group label {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center; /* Align text and checkbox */
    gap: 10px; /* Space between checkbox and text */
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer; /* Makes it clear it's clickable */
}
