/* Contact Page Styles */
.contact-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 50px;
  max-width: 650px;
  width: 100%;
  color: #fff;
  text-align: center;
}

.contact-card h2 { 
  font-size: 36px; 
  margin-bottom: 15px; 
  color: #fff; 
}

.contact-card p.subtitle { 
  font-size: 18px; 
  margin-bottom: 35px; 
  color: #e0e0e0; 
}

.contact-info { 
  text-align: left; 
  margin-bottom: 25px; 
}

.info-group { 
  margin-bottom: 25px; 
}

.info-title {
  font-weight: bold; 
  font-size: 18px;
  display: flex; 
  align-items: center;
  margin-bottom: 5px; 
  color: #fff;
}

.info-group p { 
  margin: 4px 0 4px 30px; 
  font-size: 17px; 
  color: #f0f0f0; 
}

.icon { 
  font-size: 22px; 
  margin-right: 12px; 
  color: #fff; 
  min-width: 25px; 
}

.quote { 
  font-style: italic; 
  color: #fff; 
  font-size: 17px; 
  margin-top: 30px; 
}

/* Location Page Styles */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 25px;
  flex: 1 1 400px;
  min-width: 320px;
}

iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 12px;
}

.info-group {
  margin-top: 20px;
}

.info-group h4 {
  color: #4a2f88;
  margin-bottom: 8px;
  font-size: 18px;
}

.info-group p {
  margin: 5px 0;
}

.info-group i {
  color: #4a2f88;
  margin-right: 8px;
}

.church-image {
  width: 100%;
  border-radius: 12px;
  margin-top: 30px;
}

.quote {
  text-align: center;
  font-style: italic;
  color: #4a2f88;
  font-size: 18px;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .contact-card { padding: 30px; }
  .contact-card h2 { font-size: 30px; }
  .contact-card p.subtitle, .info-group p, .quote { font-size: 16px; }
}

@media (max-width: 768px) {
  .flex-grid {
    flex-direction: column;
    align-items: center;
  }
}