
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
}

.logo {
    width: 80px;
    margin-top: 20px;
}

.hero-bg {
    background-image: url("img/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-bg h1,
.hero-bg .cta {
    position: relative;
    z-index: 2;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.cta {
    background-color: #FF6A00;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 1rem;
    display: inline-block;
}

.plans {
    display: flex;
    justify-content: space-around;
    background-color: #1a1a1a;
    padding: 2rem;
    flex-wrap: wrap;
    gap: 10px;
}

.plan {
    width: 26%;
    margin-bottom: 1rem;
    padding: 10px;
    text-align: center;
}

.plan img {
    width: 80%;
    max-width: 250px;
    border-radius: 15px;
    margin: auto;
}

.plan ul {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0 10px;
    list-style-type: none;
}

.price {
    color: #FF6A00;
    font-weight: bold;
    margin-left: 10px;
}

.center-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.bio-pic {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.bio-text {
    max-width: 800px;
    padding: 0 20px;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 2rem 1rem;
    color: #aaa;
}

.footer .social-links {
    margin-bottom: 1rem;
}

.footer .social-icon {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: transform 0.2s;
}

.footer .social-icon:hover {
    transform: scale(1.1);
}

.footer-text {
    font-size: 1rem;
    color: #fff;
}

.footer-rights {
    font-size: 0.8rem;
    color: #666;
}

.addon {
    background-color: #1a1a1a;
    padding: 2rem;
    text-align: center;
}

.addon h2 {
    margin-bottom: 1rem;
    color: #FF6A00;
}

.addon p {
    color: #fff;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .plans {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 90%;
        margin-bottom: 1.5rem;
    }

    .bio-pic {
        width: 180px;
    }

    .bio-text {
        padding: 0 15px;
    }

    .hero-bg {
        padding: 4rem 1rem;
        background-position: top;
    }

    .hero-bg h1 {
        font-size: 1.5rem;
    }

    .cta {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
