body {
    font-family: 'Garamond', serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    color: #333;
}

header {
    background: darkred;
    color: #fff;
    text-align: center;
    padding: 2rem;
    background-image: url('images/music-notes-bg.png');
    background-size: cover;
}

.logo {
    width: 300px;
    height: auto;
}

.ptg-logo {
    width: 120px;
    height: auto;
    margin-top: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.2rem;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #2b2b2b;
    padding-bottom: 0.5rem;
}

.service, .resource {
    margin: 1rem 0;
    background: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.resource-list a {
    color: #2b2b2b;
    text-decoration: none;
    margin-right: 1rem;
}

.resource-list a:hover {
    text-decoration: underline;
}

form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

input, select, textarea {
    padding: 0.5rem;
    font-size: 1rem;
    font-family: 'Garamond', serif;
}

button {
    background: #2b2b2b;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #4a4a4a;
}

.slideshow {
    position: relative;
    max-width: 600px;
    height: 400px; /* Fixed height for uniform display */
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Shrink-to-fit while preserving aspect ratio */
    border-radius: 5px;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.slide.active {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background: #2b2b2b;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #2b2b2b;
    color: #fff;
}

@media (max-width: 600px) {
    header, section {
        padding: 1rem;
    }
    h1 {
        font-size: 1.8rem;
    }
    .slideshow {
        max-width: 100%;
        height: 250px; /* Smaller height for mobile */
    }
    .ptg-logo {
        width: 100px;
    }
}