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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a3d, #2e2e6a);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header Section */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: rgba(0, 0, 0, 0.2);
}

header .logo {
    font-size: 1.2rem;
    font-weight: bold;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

header .buttons button {
    margin-left: 10px;
    padding: 5px 15px;
    border: none;
    cursor: pointer;
}

.login-btn {
    background-color: #4476f6;
    color: white;
    border-radius: 5px;
}

.register-btn {
    background-color: #42b983;
    color: white;
    border-radius: 5px;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 3% 5%;
}

.pricing h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
}

.pricing-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pricing-card h2 span {
    font-size: 1rem;
    color: #ccc;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #42b983;
}

.pricing-card p {
    margin-bottom: 15px;
    color: #dcdcdc;
}

.pricing-card ul {
    list-style: none;
    margin: 10px 0 20px;
    text-align: left;
    color: white;
}

.pricing-card ul li {
    margin: 5px 0;
}

.choose-btn {
    background-color: #735ee3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.choose-btn:hover {
    background-color: #5a49bd;
}

/* Most Popular Plan */
.popular {
    background-color: #302859;
}

.popular .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #735ee3;
    padding: 5px 10px;
    color: white;
    font-size: 0.8rem;
    border-radius: 5px;
}

.highlighted {
    background-color: #b36aff;
}

.highlighted:hover {
    background-color: #9a55d1;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 15px 5%;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

footer nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header, footer {
        flex-direction: column;
        text-align: center;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}
