:root {
    --main-color: #003366;
    --accent-color: #0099cc;
    --bg-light: #f9f9f9;
    --text-dark: #222;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

header,
footer {
    background-color: var(--main-color);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 0.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem 1rem;
}

h2 {
    color: var(--main-color);
    margin-bottom: 1rem;
}

h3 {
    margin-top: 2rem;
    color: var(--accent-color);
}

ul {
    padding-left: 1.5rem;
}

section {
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.shorts-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.shorts-wrapper iframe {
    width: 100%;
    max-width: 270px;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
}

footer p {
    margin: 0;
}

@media (max-width: 600px) {
    nav a {
        display: block;
        margin: 8px 0;
    }
}

.photo-gallery {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.photo-gallery img {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-gallery img:hover {
    transform: scale(1.05);
}

.photo-gallery::-webkit-scrollbar {
    height: 8px;
}

.photo-gallery::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.toggle-item {
    position: relative;
    cursor: pointer;
    font-weight: 500;
}

.toggle-item .toggle-btn {
    margin-left: 8px;
    color: var(--accent-color);
    font-weight: bold;
}

.toggle-details {
    display: none;
    margin-top: 0.5rem;
    margin-left: 1rem;
    list-style: circle;
    font-weight: normal;
}

.toggle-item.open .toggle-details {
    display: block;
}

.toggle-item.open .toggle-btn::after {
    content: "−";
}

.video-scroll {
    overflow-x: auto;
    padding: 1rem 0;
}

.shorts-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
}

.shorts-wrapper iframe {
    flex: 0 0 auto;
    width: 270px;
    height: 480px;
    border-radius: 10px;
}
