/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #10b981;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: white;
    font-size: 24px;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 18px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #10b981;
    background-color: #f0fdf4;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: #f3f4f6;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 18px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    color: #10b981;
    background-color: #f0fdf4;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #10b981;
    border: 2px solid #10b981;
}

.btn-secondary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    background: #f0fdf4;
    padding: 12px;
    border-radius: 12px;
}

.stat-icon i {
    color: #10b981;
    font-size: 24px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin: 0;
}

.stat-label {
    color: #6b7280;
    margin: 0;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon-wrapper.green {
    background: #f0fdf4;
}

.stat-icon-wrapper.blue {
    background: #eff6ff;
}

.stat-icon-wrapper.purple {
    background: #faf5ff;
}

.stat-icon-wrapper i {
    font-size: 32px;
}

.stat-icon-wrapper.green i {
    color: #10b981;
}

.stat-icon-wrapper.blue i {
    color: #3b82f6;
}

.stat-icon-wrapper.purple i {
    color: #8b5cf6;
}

.stat-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 8px;
}

.stat-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
}

.page-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f9fafb;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-link:hover {
    color: #059669;
}

.blog-cta {
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.2s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card.blue .service-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.service-card.green .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card.purple .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-card.orange .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-card.red .service-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.service-card.indigo .service-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.service-icon i {
    color: white;
    font-size: 32px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.125rem;
    color: #374151;
}

.service-features i {
    color: #10b981;
    margin-right: 12px;
    font-size: 16px;
}

.service-info {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.info-item i {
    margin-right: 8px;
}

.service-card.blue .info-item i {
    color: #3b82f6;
}

.service-card.green .info-item i {
    color: #10b981;
}

.service-card.purple .info-item i {
    color: #8b5cf6;
}

.service-card.orange .info-item i {
    color: #f59e0b;
}

.service-card.red .info-item i {
    color: #ef4444;
}

.service-card.indigo .info-item i {
    color: #6366f1;
}

/* Activities Section */
.schedule-section {
    padding: 80px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.day-schedule {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.day-header {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    padding: 20px;
    text-align: center;
}

.day-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.day-activities {
    padding: 20px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid;
}

.activity-item.blue {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.activity-item.green {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.activity-item.purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.activity-item.red {
    background: #fef2f2;
    border-color: #fecaca;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-item.blue .activity-icon {
    background: #3b82f6;
}

.activity-item.green .activity-icon {
    background: #10b981;
}

.activity-item.purple .activity-icon {
    background: #8b5cf6;
}

.activity-item.red .activity-icon {
    background: #ef4444;
}

.activity-icon i {
    color: white;
    font-size: 18px;
}

.activity-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.activity-time,
.activity-location {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

/* Activity Details */
.activity-details-section {
    padding: 80px 0;
    background: #f9fafb;
}

.activity-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.activity-detail-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.activity-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.activity-title-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 4px;
}

.activity-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.activity-detail-card.blue .activity-type {
    background: #eff6ff;
    color: #1d4ed8;
}

.activity-detail-card.green .activity-type {
    background: #f0fdf4;
    color: #059669;
}

.activity-detail-card.purple .activity-type {
    background: #faf5ff;
    color: #7c3aed;
}

.activity-detail-card.red .activity-type {
    background: #fef2f2;
    color: #dc2626;
}

.instructor {
    color: #6b7280;
    margin-bottom: 16px;
}

.activity-schedule-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.875rem;
}

.difficulty {
    color: #6b7280;
    margin-bottom: 20px;
}

.availability {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.available {
    background: #f0fdf4;
    color: #059669;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* About Page */
.mvv-section {
    padding: 80px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.mvv-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.mvv-card.green {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.mvv-card.blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.mvv-card.purple {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mvv-card.green .mvv-icon {
    background: #10b981;
}

.mvv-card.blue .mvv-icon {
    background: #3b82f6;
}

.mvv-card.purple .mvv-icon {
    background: #8b5cf6;
}

.mvv-icon i {
    color: white;
    font-size: 32px;
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.mvv-description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.125rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    color: white;
    font-size: 24px;
}

.value-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 12px;
}

.value-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-content {
    padding: 24px;
}

.team-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 4px;
}

.team-title {
    color: #10b981;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-experience {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    margin-bottom: 16px;
}

.team-certifications h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.cert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.cert-tag {
    background: #f0fdf4;
    color: #059669;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.team-bio {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.team-contact {
    display: flex;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #059669;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 32px;
}

.contact-items {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.contact-icon {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    padding: 12px;
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.contact-main {
    color: #374151;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-sub {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Map Section */
.map-section {
    margin-bottom: 40px;
}

.map-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.map-placeholder {
    background: #f3f4f6;
    border-radius: 16px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
}

.map-content {
    text-align: center;
}

.map-content i {
    font-size: 48px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.map-text {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 4px;
}

.map-address {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Transportation Section */
.transportation-section {
    margin-bottom: 40px;
}

.transportation-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.transportation-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transport-option {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.transport-option i {
    width: 20px;
    text-align: center;
}

.transport-option i:nth-child(1) {
    color: #10b981;
}

.transport-option i:nth-child(1):nth-of-type(2) {
    color: #3b82f6;
}

.transport-option i:nth-child(1):nth-of-type(3) {
    color: #f59e0b;
}

/* Social Section */
.social-section {
    margin-bottom: 40px;
}

.social-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-card.facebook {
    background: #1877f2;
}

.social-card.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card.youtube {
    background: #ff0000;
}

.social-card i {
    font-size: 32px;
    margin-bottom: 8px;
}

.social-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.social-followers {
    font-size: 0.875rem;
    opacity: 0.9;
}

.social-description {
    color: #6b7280;
    text-align: center;
}

/* Contact Form */
.contact-form-section {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.form-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #10b981;
}

.form-checkbox label {
    color: #6b7280;
    line-height: 1.5;
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-notice {
    margin-top: 24px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
}

.form-notice p {
    color: #059669;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1.125rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #10b981;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: #10b981;
    margin-top: 2px;
    width: 18px;
}

.footer-contact span {
    color: #d1d5db;
    font-size: 1.125rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link.facebook {
    background: #374151;
}

.social-link.instagram {
    background: #374151;
}

.social-link.youtube {
    background: #374151;
}

.social-link:hover {
    background: #10b981;
    transform: translateY(-2px);
}

.social-link i {
    color: white;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
    }

    .mobile-nav.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .activity-details-grid {
        grid-template-columns: 1fr;
    }

    .activity-schedule-info {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .hero-description,
    .page-description,
    .section-description,
    .cta-description {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 16px;
    }

    .service-card,
    .activity-detail-card,
    .team-card,
    .contact-form-card {
        padding: 24px;
    }

    .mvv-card {
        padding: 32px 24px;
    }

    .value-card {
        padding: 24px;
    }

    .contact-item {
        padding: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}