.main-vGnTcpTOSbdp {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fc;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-vGnTcpTOSbdp {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-vGnTcpTOSbdp .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-vGnTcpTOSbdp ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-vGnTcpTOSbdp a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-vGnTcpTOSbdp a:hover {
    color: #7B1FA2;
}

.hero-vGnTcpTOSbdp {
    background: linear-gradient(135deg, #7B1FA2ee, #7B1FA2bb);
    color: white;
    text-align: center;
    padding: 67vh 0 15vh;
    margin-top: 80px;
}

.hero-vGnTcpTOSbdp h1 {
    font-size: 4.5rem;
    margin: 0 0 20px;
}

.hero-vGnTcpTOSbdp p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.content-vGnTcpTOSbdp, .features-vGnTcpTOSbdp, .cta-vGnTcpTOSbdp {
    padding: 100px 0;
}

.content-vGnTcpTOSbdp {
    background: white;
}

.features-vGnTcpTOSbdp h2, .cta-vGnTcpTOSbdp h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #7B1FA2;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-vGnTcpTOSbdp {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.card-vGnTcpTOSbdp:hover {
    transform: translateY(-10px);
}

.card-vGnTcpTOSbdp h3 {
    color: #7B1FA2;
    margin-bottom: 15px;
}

.cta-vGnTcpTOSbdp {
    background: #7B1FA220;
    text-align: center;
    color: #333;
}

.btn-vGnTcpTOSbdp {
    background: #7B1FA2;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-vGnTcpTOSbdp:hover {
    background: #333;
    transform: scale(1.05);
}

.btn-vGnTcpTOSbdp.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.footer-vGnTcpTOSbdp {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-vGnTcpTOSbdp h1 { font-size: 3rem; }
    .hero-vGnTcpTOSbdp p { font-size: 1.2rem; }
    .nav-vGnTcpTOSbdp ul { flex-direction: column; gap: 15px; }
}