body {
    font-family: 'Inter', Arial, sans-serif;
    background: #fafaff;
    color: #222;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3vw;
    background: #fff;
    box-shadow: 0 2px 12px rgba(90,79,255,0.07);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo-img {
    height: 38px;
    width: auto;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a, .nav-links select {
    color: #5a4fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #3b2ed2;
    text-decoration: underline;
}

.btn-main {
    background: linear-gradient(90deg, #5a4fff 60%, #a084ff 100%);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(90,79,255,0.07);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    margin-top: 1.5rem;
    display: inline-block;
}

.btn-main:hover {
    background: linear-gradient(90deg, #3b2ed2 60%, #5a4fff 100%);
    box-shadow: 0 4px 24px rgba(90,79,255,0.13);
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
    text-align: center;
    margin-top: 2rem;
}

.hero-section h1 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #5a4fff;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
}

.pricing-section {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0 2rem 0;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(90,79,255,0.09);
    padding: 2.5rem 2rem;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 6px 32px rgba(90,79,255,0.16);
}

.pricing-card h2 {
    color: #5a4fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.pricing-card .price {
    font-size: 2.3rem;
    font-weight: 800;
    color: #5a4fff;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
    color: #444;
    font-size: 1.05rem;
}

footer {
    text-align: center;
    color: #888;
    margin: 2rem 0 1rem 0;
    font-size: 1rem;
}