/* Custom CSS file for our PHP project */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

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

.header {
  background-color: #4f46e5;
  color: white;
  padding: 1rem;
  text-align: center;
}

.content {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn {
  background-color: #4f46e5;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  display: inline-block;
  margin: 0.5rem;
}

.btn:hover {
  background-color: #4338ca;
}

/* Footer specific styles */
footer {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer input[type="email"]:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

footer button:hover {
  background-color: #1a1a1a;
}

/* Responsive design for footer */
@media (max-width: 768px) {
  footer div[style*="display: flex"] {
    flex-direction: column !important;
  }
  
  footer div[style*="flex: 0 0 400px"] {
    flex: 1 !important;
    min-width: 100% !important;
  }
  
  footer div[style*="strong"] span {
    margin-left: 10px !important;
  }
}
