/* General Style */
.premium-pannel-page,
.more-pannel {
    overflow-x: hidden;
}
body {
    background-color: black;
    color: white;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;

    background-image: url('images/pannel-page-background-AI.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    min-height: 100vh;
}
a {
    color: #ffff;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Section Style */
.basic-pannel-expand {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
    margin-bottom: 30px;
    border-radius: 20px;
}

/* Headings */
.basic-pannel-expand h1 {
    padding-bottom: 45px;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00ffff;
}

/* Content Layout */
.basic-pannel-expand-main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Feature Box Layout */
.basic-pannel-expand-main-content-feature {
    flex: 1;
    min-width: 300px;
}

/* Download & Image Container */
.basic-pannel-expand-download-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* Feature Rows */
.feature-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-row.single {
    flex-direction: column;
}

.feature-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    min-width: 240px;
    box-shadow: 0 0 5px #00ffff66;
}

/* Image Style */
.basic-pannel-expand-main-content-img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Download Button */
.Download-now-btn-container-expand {
    display: flex;
    justify-content: center;
    padding-bottom: 45px;
}

.Download-now-btn-expand {
    position: relative;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0d8585;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
}

.Download-now-btn-expand:hover {
    background-color: white;
    color: #000;
}

/* Spacer */
.spacer {
    height: 50px;
}