/* RESET AND BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.AbCdEfGhIjKl {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #03070A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER */
.PoIuYtReWqAs, .QazWsxEdcrfv, .LkjHgfDsAzxc, .IuHgTyFrEdCx, .MnbVczXasdfg, .BgtNhyUjmKlo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header.MnBvCxZlKjHg {
    background-color: rgba(3, 7, 10, 0.95);
    border-bottom: 2px solid #42FFD5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.PoIuYtReWqAs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.LkJiHnGfDsAz {
    font-size: 28px;
    font-weight: bold;
    color: #42FFD5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav.PlmKoIjnBhyG ul {
    display: flex;
    list-style: none;
}

nav.PlmKoIjnBhyG ul li {
    margin-left: 25px;
}

nav.PlmKoIjnBhyG ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav.PlmKoIjnBhyG ul li a:hover {
    color: #42FFD5;
    text-shadow: 0 0 10px rgba(66, 255, 213, 0.5);
}

/* MOBILE MENU (BURGER) */
.XyZqWrEtYuIo {
    display: none;
}

.QpWoEiRuTyAs {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.QpWoEiRuTyAs span {
    width: 25px;
    height: 3px;
    background-color: #42FFD5;
    margin: 2px 0;
    transition: 0.4s;
}

/* HERO SECTION */
section.MnbVczXasdfg {
    padding: 80px 0;
}

.QazWsxEdcrfv {
    display: flex;
    align-items: center;
    gap: 50px;
}

.PkmiUjnhBgvf {
    flex: 1;
}

.PkmiUjnhBgvf img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(66, 255, 213, 0.2);
    object-fit: cover;
}

.XswEdcrfvtgb {
    flex: 1;
}

h1.CdeFrvGtbHyu {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #42FFD5;
}

p.BgtNhyUjmKlo, p.ZaQxSwEcRfVt, p.MkoJnhBgyTfc {
    margin-bottom: 20px;
    color: #A0AEC0;
    font-size: 18px;
}

/* BUTTONS */
.VcxZasDfghjk {
    display: inline-block;
    padding: 15px 35px;
    background-color: #42FFD5;
    color: #03070A;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #42FFD5;
    text-transform: uppercase;
}

.VcxZasDfghjk:hover {
    background-color: transparent;
    color: #42FFD5;
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.6);
}

/* SECTIONS COMMON */
section {
    padding: 100px 0;
}

h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #42FFD5;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #42FFD5;
}

/* LISTS */
ul.PlmKoIjnBhyG {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

ul.PlmKoIjnBhyG li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #42FFD5;
}

/* FAQ (DETAILS) */
details {
    background: rgba(66, 255, 213, 0.05);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(66, 255, 213, 0.2);
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #42FFD5;
    list-style: none;
    position: relative;
}

summary::after {
    content: '→';
    position: absolute;
    right: 20px;
}

details[open] summary::after {
    transform: rotate(90deg);
}

details p {
    padding: 0 20px 20px;
    color: #A0AEC0;
}

/* FORM */
form.PoiUytRewqAs {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 40px auto 0;
    border: 1px solid rgba(66, 255, 213, 0.1);
}

.LkjHgfDsAzxc, .PlmKoIjnBhyG, .OlpKmJinBhVg, .UjMnBgyTfCxd {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 12px;
    background: #03070A;
    border: 1px solid #42FFD5;
    color: white;
    border-radius: 5px;
}

input[type="checkbox"] {
    accent-color: #42FFD5;
    margin-right: 10px;
}

form.PoiUytRewqAs a {
    color: #42FFD5;
    text-decoration: underline;
}

/* FOOTER */
footer.LpKoMjinBuhg {
    background-color: #010406;
    padding: 60px 0;
    border-top: 1px solid rgba(66, 255, 213, 0.2);
    text-align: center;
}

footer a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

footer a:hover {
    color: #42FFD5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .QazWsxEdcrfv {
        flex-direction: column;
    }
    
    h1.CdeFrvGtbHyu {
        font-size: 36px;
    }

    ul.PlmKoIjnBhyG {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .QpWoEiRuTyAs {
        display: flex;
        z-index: 1001;
    }

    nav.PlmKoIjnBhyG {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #03070A;
        padding-top: 100px;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    nav.PlmKoIjnBhyG ul {
        flex-direction: column;
        align-items: center;
    }

    nav.PlmKoIjnBhyG ul li {
        margin: 20px 0;
    }

    .XyZqWrEtYuIo:checked ~ nav.PlmKoIjnBhyG {
        right: 0;
    }

    .XyZqWrEtYuIo:checked ~ .QpWoEiRuTyAs span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .XyZqWrEtYuIo:checked ~ .QpWoEiRuTyAs span:nth-child(2) {
        opacity: 0;
    }

    .XyZqWrEtYuIo:checked ~ .QpWoEiRuTyAs span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* DECORATIVE ELEMENTS */
.MnbVcxZlkjhg::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #42FFD5, transparent);
    margin-bottom: 50px;
}

/* UTILITIES */
img {
    max-width: 100%;
    height: auto;
    display: block;
}