/* Base & Header */
body {
    font-family: "Arial", sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}

.header {
    position: relative;
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.header-content, .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 300;
}

.home-button {
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.home-button:hover {
    background-color: rgba(255,255,255,0.3);
}

/* Content Sections */
.main-content {
    margin: 60px auto;
}

.gallery-section, .programs-hero, .video-section {
    margin: 80px 0;
    text-align: center;
}

/* Thumbnails */
.thumbnail-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.thumbnail-link {
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.thumbnail {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Icons */
.icons-gallery {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.icon-item {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    flex: 0 1 300px;
    text-align: center;
    color: #2c3e50;
}

.icon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.icon-image-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.icon-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Form */
.interest-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

input[type="text"],
input[type="email"] {
    max-width: 400px;
    height: 45px;
}

textarea {
    max-width: 600px;
    min-height: 120px;
    resize: vertical;
}

.checkbox-group, 
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item, 
.radio-item {
    display: flex;
    align-items: center;
}

button[type="submit"] {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color: #2980b9;
}

/* Video */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}