/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: #FED16A;
  color: black;
}

/* Header */
header {
  width: 100%;
  background-color: black;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ccc;
}

.signin-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signin-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* Page Title */
.page-title {
  text-align: center;
  padding: 80px 20px 40px;
}

.page-title h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-title p {
  font-size: 1.2rem;
  color: #555;
}

/* Services List */
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px 80px;
}

.service-card {
  background-color: #000;
  color: #fff;
  padding: 30px;
  width: 280px;
  border-radius: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.service-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-10px);
  background-color: #222;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ccc;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #fff;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .services-list {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
