
body {
    font-family: Arial, sans-serif;
}

.lunatixx-hero {
    background: linear-gradient(135deg,#071B3B,#0E4DA4);
    color: white;
    padding: 120px 20px;
}

.overlay {
    max-width: 1200px;
    margin: auto;
}

.content {
    max-width: 650px;
}

.content h1 {
    font-size: 56px;
    line-height: 1.1;
}

.content p {
    font-size: 20px;
    margin-top: 20px;
}

.benefits {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.benefits span {
    background: rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: 40px;
}

.lunatixx-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lunatixx-form input {
    padding: 16px;
    border-radius: 10px;
    border: none;
}

.lunatixx-form button {
    background: #00B2FF;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

.lunatixx-section {
    padding: 80px 20px;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.lunatixx-faq {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

.lunatixx-faq details {
    background: #f4f7fb;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00B2FF;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 999;
}

@media(max-width:768px){

.content h1 {
    font-size: 38px;
}

.content p {
    font-size: 18px;
}

}
