body {
    margin: 0;
    background: url("sound_recording_studio_3840x2160_4812kb.jpg") center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
}
#wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(13, 13, 13, 0.85);
}
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0,0,0,0.95);
    border-bottom: 1px solid #222;
}
.logo {
    font-size: 20px;
    font-weight: 600;
    color: #00c2ff;
}
.topbar nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.topbar nav li {
    margin-left: 20px;
}
.topbar nav a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}
.topbar nav a:hover {
    color: #00c2ff;
}
.hero {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.overlay h1 {
    font-size: 48px;
    margin: 0;
}
.overlay p {
    color: #ccc;
    margin: 10px 0 20px;
}
.btn {
    background: #2eb3dc;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.btn:hover {
    background: #faf6f6;
}
.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin: 0 20px 20px 20px;
}
.card h2 {
    color: #05b8ef;
}
footer {
    text-align: center;
    padding: 15px;
    background: #000000;
    border-top: 1px solid #222;
}
.Session_Form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}
.Book_a_Session_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.service {
    flex: 1;
    background: rgba(0, 0, 0, 0.75);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    gap: 20px;
}
.Recording {
    border: 1px solid #00c2ff;
}
.Mixing {
    border: 1px solid #ff4d6d;
}
.Services_box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 60px 80px;
    gap: 40px;
}
.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 35%;

}
.pricing-table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    background: #1a1a1a;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 20px;
}
.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #333;
}
.pricing-table th {
    background: #000;
    color: #00c2ff;
}
.pricing-table tr:hover {
    background: #2a2a2a;
}
.contact-video{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.video-wrapper {
    position: relative;
    width: 100%;
    margin: 20px auto;
    aspect-ratio: 16 / 9;
}
@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .Services_box {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 100%;
        max-width: 500px;
    }

    .topbar {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 480px) {

    .overlay h1 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .pricing-table {
        width: 95%;
        font-size: 14px;
    }

    .service img {
        height: 150px;
    }
}
@media (max-width: 768px) {
    .Session_Form {
        padding: 20px;
    }

    .Session_Form form {
        max-width: 100%;
    }
}