* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


body {
    background: #050816;
    color: white;
}


header {
    padding: 25px 8%;
    position: absolute;
    width: 100%;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    position: absolute;
    top: 20px;
    left: 30px;
}

.logo img {
    width: 120px;
    height: auto;
}


.logo span,
.hero span {
    color: #00d9ff;
}


nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}


nav a {
    color: white;
    text-decoration: none;
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background:
    radial-gradient(circle at top right, #123b70, transparent 40%);
}


.hero-content {
    max-width: 700px;
}


.hero h1 {
    font-size: 64px;
    margin-bottom: 25px;
}


.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 35px;
}


.button {
    display: inline-block;
    background: #00d9ff;
    color: #001018;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}


.section {
    padding: 90px 8%;
    text-align: center;
}


.section h2 {
    font-size: 40px;
    margin-bottom: 50px;
}


.cards,
.plans {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}


.card,
.plan {
    background: #10182c;
    padding: 35px;
    border-radius: 15px;
    width: 300px;
}


.card h3,
.plan h3 {
    margin-bottom: 20px;
}


.card p,
.plan p {
    color: #aaa;
    line-height: 1.6;
}


.dark {
    background: #080d1b;
}


.plan h4 {
    font-size: 35px;
    margin: 20px 0;
    color: #00d9ff;
}


.plan ul {
    list-style: none;
    margin: 25px 0;
}


.plan li {
    margin: 12px;
}


.plan button {
    background: #00d9ff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
}


.featured {
    transform: scale(1.05);
    border: 2px solid #00d9ff;
}


.about-text {
    max-width: 800px;
    margin:auto;
    color:#bbb;
    font-size:18px;
    line-height:1.7;
}


.contact {
    text-align:center;
    padding:100px 20px;
    background:#00d9ff;
    color:#001018;
}


.contact h2 {
    font-size:45px;
}


.contact .button {
    margin-top:25px;
    background:#050816;
    color:white;
}


footer {
    text-align:center;
    padding:25px;
    background:#02040b;
    color:#888;
}


@media(max-width:768px){

    nav ul {
        display:none;
    }

    .hero h1 {
        font-size:45px;
    }

}