* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary-color: #10b981; --bg-color: #1e293b; --content-width: 1500px; --text-color: #1f2937; --bg-light: #f9fafb; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--text-color); background-color: var(--bg-color); }
.content-wrapper { background-color: #fff; max-width: var(--content-width); margin: 0 auto; box-shadow: 0 0 30px rgba(0,0,0,0.2); }
.container { max-width: calc(var(--content-width) - 100px); margin: 0 auto; padding: 0 1.5rem; }
.site-header { position: fixed; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: var(--content-width); background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); z-index: 1000; }
.header-content { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo span { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); }
.main-nav ul { display: flex; list-style: none; gap: 2rem; }
.main-nav a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: color 0.3s ease; position: relative; padding-bottom: 4px; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: width 0.3s ease; }
.main-nav a:hover { color: var(--primary-color); }
.main-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: var(--text-color); margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
@media (max-width: 768px) {
  .site-header { left: 0; right: 0; transform: none; max-width: 100%; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 70px; left: 0; right: 0; width: 100%; background: #fff; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all 0.3s ease; max-height: calc(100vh - 70px); overflow-y: auto; z-index: 999; }
  .main-nav.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 1rem 0; }
  .main-nav li { border-bottom: 1px solid #e5e7eb; }
  .main-nav li:last-child { border-bottom: none; }
  .main-nav a { display: block; padding: 1rem 1.5rem; }
  .main-nav a::after { display: none; }
  .hero h1 { font-size: 2rem; }
  .content-wrapper { max-width: 100%; }
}
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; padding-top: 70px; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.section { padding: 5rem 0; text-align: center; }
.section:nth-child(even) { background: var(--bg-light); }
.section h2 { font-size: 2rem; margin-bottom: 2rem; color: var(--primary-color); }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.offer-card { background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; }
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.offer-card h3 { color: var(--primary-color); margin-bottom: 1rem; }
.offer-image { width: 5cm; height: 5cm; object-fit: cover; border-radius: 12px; margin: 0 auto 1rem; display: block; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.contact-info { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.contact-subtitle { color: #6b7280; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-contact { display: inline-block; background: var(--primary-color); color: #fff; padding: 1rem 3rem; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-contact:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.contact-form { max-width: 500px; margin: 0 auto; text-align: left; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem; border: 1px solid #d1d5db; border-radius: 8px; }
.btn-primary { background: var(--primary-color); color: #fff; border: none; padding: 0.875rem 2rem; border-radius: 8px; cursor: pointer; width: 100%; transition: all 0.3s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-primary:active { transform: translateY(0); }
.news-preview-section { padding: 6rem 0 4rem; padding-top: calc(70px + 3rem); background-size: cover; background-position: center; }
.news-preview-title { color: white; font-size: 1.75rem; margin-bottom: 2rem; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.news-preview-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; }
.news-featured-card { background: white; border-radius: 16px; padding: 2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.news-featured-card h3 { font-size: 1.5rem; margin: 1rem 0 0.5rem; color: #1f2937; }
.news-featured-card p { color: #6b7280; }
.news-badge { display: inline-block; padding: 0.25rem 0.75rem; border: 1px solid var(--primary-color); color: var(--primary-color); border-radius: 20px; font-size: 0.75rem; font-weight: 500; }
.news-date { color: #9ca3af; font-size: 0.875rem; margin-top: 0.5rem; }
.news-side-cards { display: flex; flex-direction: column; gap: 1rem; }
.news-small-card { background: white; border-radius: 12px; padding: 1.25rem; box-shadow: 0 2px 8px rgba(0,0,0,0.1); display: flex; align-items: center; }
.news-small-card span { display: block; margin-top: 0.5rem; font-weight: 600; color: #1f2937; }
.news-small-card > div { flex: 1; }
.news-preview-cta { text-align: center; margin-top: 2rem; }
.btn-news { display: inline-block; padding: 0.875rem 2rem; border: 2px solid var(--primary-color); color: var(--primary-color); border-radius: 50px; text-decoration: none; font-weight: 500; transition: all 0.3s; }
.btn-news:hover { background: var(--primary-color); color: white; }
@media (max-width: 768px) { .news-preview-grid { grid-template-columns: 1fr; } .location-layout { flex-direction: column; gap: 2rem; } .location-map-wrapper { min-height: 300px; } .map-container { height: 300px; min-height: 300px; } }
.location-section { background: var(--bg-light); }
.location-layout { display: flex; gap: 3rem; align-items: stretch; }
.location-content { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.location-content h2 { margin-bottom: 1rem; }
.location-section .location-text { font-size: 1.1rem; color: #6b7280; margin-bottom: 1.5rem; line-height: 1.7; white-space: pre-line; }
.address-row { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text-color); }
.address-icon { font-size: 1.25rem; color: var(--primary-color); }
.location-map-wrapper { flex: 1; min-height: 350px; }
.map-container { height: 100%; min-height: 350px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.sponsors-section { padding: 4rem 0; background: var(--bg-color); text-align: center; }
.sponsors-title { color: #fff; font-size: 1.25rem; font-weight: 500; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.1em; }
.sponsors-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 3rem; }
.sponsor-item { display: block; transition: opacity 0.3s, transform 0.3s; }
.sponsor-item:hover { opacity: 0.8; transform: scale(1.05); }
.sponsor-item img { max-height: 60px; max-width: 150px; object-fit: contain; }
.sponsor-item span { color: #fff; font-size: 1rem; }
.site-footer { background: var(--text-color); color: #fff; padding: 2rem 0; text-align: center; }