body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff8e1;
    color: #333;
    text-align: center;
}

header {
    background-color: #f9e900;
    color: white;
    padding: 20px 0;
    font-size: 24px;
    font-weight: 700;
    animation: fadeIn 1s ease-in-out;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #ffb300;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    display: block;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
    background-color: #ff9800;
    border-radius: 5px;
}

section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    animation: slideUp 1s ease-in-out;
}

h1 {
    color: #414eda;
}

h2 {
    color: #ffb300;
}

footer {
    text-align: center;
    background-color: #ffcc00;
    color: white;
    padding: 15px 0;
    margin-top: 20px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    text-decoration: none;
}

.social-links img {
    width: 40px;
    height: 40px;
    max-width: 100%;
    transition: transform 0.3s ease-in-out;
}

social-links img:hover {
    transform: scale(1.1);
}

#plans {
    text-align: center;
    margin: auto;
    margin-top: 20px;

}

.plan-container {
    margin-bottom: 20px;
}

.plan-container h3 {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

plan-container p {
    background-color: #f2f2f2;
    padding: 10px;
    border-radius: 5px;
}

table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 80%;
    max-width: 600px;
    animation: popUp 0.5s ease-in-out;
}

th, td {
    border: 2px solid #4CAF50;
    padding: 10px;
}

th {
    background-color: #4CAF50;
    color: white;
}

td {
    background-color: #f2f2f2;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes popUp {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}