header {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    position: relative; /* This allows absolute positioning inside */
}

header .logo-container {
    position: absolute; /* Positioning the logo to the right */
    top: 1px; /* Adjust as needed */
    right: 10px; /* Moves the logo to the top right */
}

header .logo {
    height: 80px; /* Adjust the size of the logo */
    width: auto;
}

header nav {
    display: flex;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

header nav a:hover {
    color: #FFD700; /* Adds a hover effect to the navigation links */
}

header .cta-button {
    background-color: #FFD700;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
}

.hero {
    background: url('../images/piano-background.jpg') no-repeat center center/cover;
    height: 400px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #FFD700;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
}

.section {
    padding: 40px 10%;
    text-align: center;
}

.class-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.card h3 {
    color: #000;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form label {
    font-size: 18px;
    margin-bottom: 8px;
    text-align: left;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.contact-form button {
    background-color: #FFD700;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
}

.contact-info {
    margin-top: 30px;
    font-size: 18px;
    color: #333;
}

footer {
    background-color: #000;
    color: white;
    padding: 20px;
    text-align: center;
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}