/* Static Pages Styles */
.static-page {
  min-height: calc(100vh - 140px);
  padding-top: 80px;
}

.page-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

.page-content {
  padding: 60px 0;
  background: #f8fafc;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  color: #1e40af;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
  color: #374151;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 20px 0 15px 0;
}

.legal-section p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 15px;
}

.legal-section ul {
  color: #4b5563;
  line-height: 1.7;
  margin: 15px 0;
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 8px;
}

.contact-info {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: #1e40af;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* About Page Specific */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.about-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.about-card h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.about-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
}

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

.submit-btn {
  background: #1e40af;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .legal-content,
  .contact-form {
    padding: 20px;
    margin: 0 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
