    body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    }

    header {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 1.5em 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin: 0;
    padding: 0;
    }

    nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 0.5em 0.8em;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 6px;
    }

    nav ul li a:hover {
    background-color: #0055aa;
    }

    .skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #000;
    color: #fff;
    padding: 0.5em 1em;
    z-index: 1000;
    transition: top 0.3s;
    }

    .skip-link:focus {
    top: 0;
    }

    main {
    padding: 2em;
    }

    section {
    margin-bottom: 2em;
    }

    #about-event {
    background-color: #ffffff;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2em;
    }

    #about-event h2,
    #about-event h3 {
    color: #003366;
    margin-bottom: 0.5em;
    }

    #about-event p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1em;
    }

    .performers {
    display: flex;
    gap: 1.5em;
    flex-wrap: wrap;
    justify-content: center;
    }

    .performer {
    flex: 1 1 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
    padding: 1em;
    border-radius: 8px;
    }

    .performer:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .performer img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5em;
    transition: transform 0.3s;
    }

    .performer img:hover {
    transform: scale(1.05);
    }

    .performer p {
    font-size: 0.95em;
    color: #555;
    }

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

    .performer {
        max-width: 90%;
    }
    }

    form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    }

    form label {
    font-weight: bold;
    }

    form input,
    form select,
    form button {
    padding: 0.5em;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    }

    form button {
    background-color: #003366;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    transition: background-color 0.3s;
    }

    form button:hover {
    background-color: #0055aa;
    }

    footer {
    background-color: #003366;
    padding: 1em;
    color: #fff;
    text-align: center;
    }
