/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 50px;
  width: auto;
  clip-path: inset(0% 0% 5% 5%);
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #2c3e50;
  max-width: 200px;
  line-height: 1.2;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #3498db;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #3498db;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #3498db;
  color: #fff;
}

.btn-primary:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #2c3e50;
  transform: translateY(-2px);
}

/* ===== MAIN CONTENT ===== */
.main {
  margin-top: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
  margin-top: 80px;
}

.page-header h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
  padding: 4rem 0;
  background: #fff;
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.welcome-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.welcome-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.stat-item i {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  margin-bottom: 0;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 4rem 0;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card.large {
  grid-column: span 2;
}

.service-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 3rem;
  color: #3498db;
}

.service-card h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p {
  text-align: center;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #555;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  margin-right: 0.5rem;
}

.service-details {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 5px;
  border-left: 4px solid #3498db;
}

.service-details p {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.service-details p:last-child {
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #2980b9;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 4rem 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  clip-path: inset(0% 0% 5% 5%);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(44, 62, 80, 0.9));
  color: #fff;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #2c3e50;
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3498db;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #95a5a6;
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.mission-section,
.history-section,
.team-section,
.recognition-section {
  padding: 4rem 0;
}

.mission-section,
.team-section {
  background: #fff;
}

.history-section,
.recognition-section {
  background: #f8f9fa;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.mission-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.mission-values {
  display: grid;
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.value-item i {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.value-item h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.value-item p {
  color: #666;
  margin-bottom: 0;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #3498db;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
  text-align: right;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) {
  text-align: left;
  padding-left: 3rem;
}

.timeline-year {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #3498db;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  z-index: 1;
}

.timeline-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.timeline-content h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  margin-bottom: 0;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.member-avatar i {
  font-size: 2rem;
  color: #3498db;
}

.team-member h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.team-member p {
  color: #666;
  margin-bottom: 0;
}

/* Recognition */
.recognition-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.recognition-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.recognition-item i {
  font-size: 3rem;
  color: #f39c12;
  margin-bottom: 1rem;
}

.recognition-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.recognition-item p {
  color: #666;
  margin-bottom: 0;
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */
.services-overview,
.core-services,
.specialized-services,
.service-process,
.service-quality {
  padding: 4rem 0;
}

.services-overview,
.specialized-services,
.service-quality {
  background: #fff;
}

.core-services,
.service-process {
  background: #f8f9fa;
}

.services-intro p {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.specialized-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  text-align: center;
  transition: transform 0.3s ease;
}

.specialized-card:hover {
  transform: translateY(-5px);
}

.specialized-icon {
  margin-bottom: 1.5rem;
}

.specialized-icon i {
  font-size: 3rem;
  color: #3498db;
}

.specialized-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.specialized-card p {
  color: #666;
  margin-bottom: 0;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #3498db;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
  margin-bottom: 0;
}

/* Quality Features */
.quality-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.quality-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.quality-item i {
  font-size: 3rem;
  color: #27ae60;
  margin-bottom: 1rem;
}

.quality-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.quality-item p {
  color: #666;
  margin-bottom: 0;
}

/* ===== ACTIVITIES PAGE SPECIFIC STYLES ===== */
.activities-overview,
.regular-activities,
.special-events,
.activity-calendar,
.getting-involved {
  padding: 4rem 0;
}

.activities-overview,
.special-events,
.getting-involved {
  background: #fff;
}

.regular-activities,
.activity-calendar {
  background: #f8f9fa;
}

.activities-intro p {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.activity-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.activity-icon i {
  font-size: 3rem;
  color: #3498db;
}

.activity-card h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.activity-card p {
  text-align: center;
  color: #666;
  margin-bottom: 1.5rem;
}

.activity-details p {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.activity-details p:last-child {
  margin-bottom: 0;
}

.activity-details i {
  color: #3498db;
  margin-right: 0.5rem;
  width: 16px;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-image {
  height: 200px;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0% 0% 5% 5%);
}

.event-content {
  padding: 1.5rem;
}

.event-content h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.event-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.event-schedule p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.event-schedule i {
  color: #3498db;
  margin-right: 0.5rem;
  width: 16px;
}

/* Calendar Grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.calendar-week {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.calendar-week h3 {
  color: #3498db;
  text-align: center;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.calendar-events {
  list-style: none;
}

.calendar-events li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
  color: #555;
  font-size: 0.9rem;
}

.calendar-events li:last-child {
  border-bottom: none;
}

/* Involvement Steps */
.involvement-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-info,
.contact-form-section,
.location-section,
.emergency-contact,
.faq-section {
  padding: 4rem 0;
}

.contact-info,
.contact-form-section,
.location-section,
.faq-section {
  background: #fff;
}

.emergency-contact {
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  text-align: center;
}

.contact-icon {
  margin-bottom: 1.5rem;
}

.contact-icon i {
  font-size: 3rem;
  color: #3498db;
}

.contact-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #666;
  margin-bottom: 1rem;
}

.contact-details p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.contact-details i {
  color: #3498db;
  margin-right: 0.5rem;
  width: 16px;
}

/* Contact Form */
.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.form-submit {
  text-align: center;
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.transport-info {
  display: grid;
  gap: 1.5rem;
}

.transport-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.transport-item i {
  font-size: 1.5rem;
  color: #3498db;
  margin-top: 0.25rem;
}

.transport-item h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.transport-item p {
  color: #666;
  margin-bottom: 0;
}

.location-map {
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  padding: 2rem;
  text-align: center;
}

.map-placeholder i {
  font-size: 4rem;
  color: #bdc3c7;
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: #666;
  margin-bottom: 0.5rem;
}

/* Emergency Contact */
.emergency-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.emergency-item {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  text-align: center;
}

.emergency-item i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.emergency-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.emergency-item p {
  color: #666;
  margin-bottom: 0.5rem;
}

.emergency-item p:last-child {
  margin-bottom: 0;
}

/* FAQ Section */
.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  margin-bottom: 1.5rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #666;
  margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .welcome-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .welcome-stats {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.large {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-list {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 3rem;
    padding-right: 0;
  }

  .timeline-year {
    left: 20px;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .logo-text {
    display: none;
  }

  .service-card,
  .activity-card,
  .contact-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #3498db;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
  }

  .btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
  }
}

