* {
  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: linear-gradient(135deg, #FFE5B4 0%, #87CEEB 100%);
  min-height: 100vh;
}

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

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo h2 {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 20px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  transform: translateY(-2px);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
  color: white;
  padding: 150px 0 80px;
  text-align: center;
  margin: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.page-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Contact Info */
.contact-info {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-details h2 {
  color: #8B4513;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-details p {
  color: #654321;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 1.5rem;
  border-radius: 20px;
  border-left: 4px solid #FF8C00;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.1);
}

.method-icon {
  font-size: 2rem;
  /* background: linear-gradient(135deg, #FF8C00, #FFD700); */
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
  min-width: 50px;
  text-align: center;
}

.method-content h3 {
  color: #8B4513;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.method-content p {
  color: #654321;
  margin-bottom: 0.5rem;
}

.method-content a {
  color: #FF8C00;
  text-decoration: none;
  font-weight: 600;
}

.method-content a:hover {
  text-decoration: underline;
}

.method-content span {
  color: #FF8C00;
  font-weight: 500;
}

/* Contact Form */
.contact-form-section h2 {
  color: #8B4513;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form {
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 140, 0, 0.1);
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF8C00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Partner Contact */
.partner-contact {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 80px 0;
  margin: 40px 20px;
  border-radius: 20px;
}

.partner-contact h2 {
  text-align: center;
  color: #8B4513;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.partner-card {
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
  border-top: 4px solid #FF8C00;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(255, 140, 0, 0.1);
}

.partner-card h3 {
  color: #8B4513;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.partner-card p {
  color: #654321;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

.partner-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
}

.detail-item strong {
  color: #8B4513;
  min-width: 80px;
}

.detail-item a {
  color: #FF8C00;
  text-decoration: none;
}

.detail-item a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}

.faq-section h2 {
  text-align: center;
  color: #8B4513;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid #FF8C00;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.1);
}

.faq-item h3 {
  color: #8B4513;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #654321;
  line-height: 1.6;
}

/* Support Hours */
.support-hours {
  background: linear-gradient(135deg, #FF8C00 0%, #FFD700 50%, #FFA500 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin: 40px 20px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.support-hours::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.2" fill="rgba(255,255,255,0.1)"/></svg>');
  pointer-events: none;
}

.hours-content {
  position: relative;
  z-index: 1;
}

.hours-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hours-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.emergency-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 220, 0.95) 100%);
  padding: 3rem;
  border-radius: 25px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.emergency-contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.emergency-icon {
  font-size: 4rem;
  color: #FF6B6B;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.emergency-text {
  text-align: left;
}

.emergency-text h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #8B4513;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.emergency-text p {
  opacity: 0.9;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #654321;
}

.emergency-number {
  color: #FF8C00;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.emergency-number:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Footer */
.footer {
  background: rgba(139, 69, 19, 0.9);
  color: white;
  padding: 60px 0 20px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #FFD700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #FFF8DC;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: #FFF8DC;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

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

  .emergency-contact {
    flex-direction: column;
    text-align: center;
  }

  .partner-details {
    gap: 1.5rem;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
  }

  .page-hero,
  .contact-info,
  .partner-contact,
  .faq-section,
  .support-hours {
    margin: 20px 10px;
  }
}