body {
    background: white;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background: rgb(60, 110, 190);
    padding: 20px;
    position: relative;
}
header a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 40px;
}
.ads-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 20px;
    right: 20px;
    box-shadow: blue 0 0 10px;
}
section {
    background: black;
    color: black;
    padding: 20px;
    display: block;
}
.card {
    font-family: Arial, Helvetica, sans-serif;
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}
input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}
input:focus {
    border-color: #4caf50;
    outline: none;
}
button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}
.main-title {
    background: beige;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.main-body {
    background: white;
    font-size: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.socials-title {
    background: beige;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.socials-body {
    background: beige;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.instagram-logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.insta-button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-weight: bold;
    transition: 0.3s;
}
.insta-button:hover {
    opacity: 0.8;
}
.ads-group-photo {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.video {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.profile {
    display: flex;
    align-items: flex-start;
    gap: 30px;

    background: rgb(60, 110, 190);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
}

.features {
    background: white;
    color: rgb(27, 27, 27);
    display: block;
}
.features figure {
    margin-top: 12px;
    text-align: center;
    line-height: 1.4;
}
.features figure img {
    border-radius: 10px;
    box-shadow: blue 0 0 10px;
    width: 180px;
    height: 180px;
}
.bio {
    flex: 1;
    background: rgb(60, 110, 190);
    color: white;
    padding: 25px;
    border-radius: 15px;
}
.featured-event, .event-card, .fundraiser{
    background: rgb(255, 255, 225);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.featured-event {
    border-left: 6px solid #07c;
}

.event-card {
    border-left: 6px solid #28a745;
}

.fundraiser {
    border-left: 6px solid #ff9800;
}

.date {
    font-weight: bold;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    margin-top: 10px;
    text-decoration: none;
    color: white;
    background-color: #07c;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #005fa3;
}
.donate-btn {
    background-color: #ff9800;
}
.donate-btn:hover {
    background-color: #e68900;
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.private-class-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 60px;
    background: white;
}
.hero-video {
    width:350px;
    border-radius: 20px;
    display: block;
}
.info-right h1 {
    background-color: #07c;
    color: white;
    padding: 10px;
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.info-right p {
    color: black;
    line-height: 1.6;
}
.dance-styles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.dance-styles span {
    border: 1px solid #333;
    padding: 8px 15px;
    border-radius: 20px;
}
.package {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}
.book-btn {
    display: inline-block;
    margin-top: 30px;
    background: #ff7a00;
    color: white;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
}
div {
    background-color: white;
}
li {
    padding: 5px;
    display: inline-block;
    margin-right: 20px;
}
footer {
    background: rgb(60, 110, 190);
    color: white;
    font-size: 14px;
    padding: 20px 20px;
    text-align: center;
}

@media(max-width: 768px) {
    .profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .bio {
        width: 100%;
    }
    nav {
        flex-direction: column;
        gap: 20px;
    }
}

@media(max-width: 900px) {
    .private-class-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-video {
        width: 90%;
        max-width: 350px;
    }
    .package {
        text-align: left;
    }
}