* {
 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
h1 {
  margin-left: 220px;
  margin-top: 70px;
  color: white;
  font-size: 35px;
}
span {
  margin-left: 220px;
  margin-top: -100px;
  color: white; 
  font-size: 35px;
}
img {
  height: 140px;
  width: 160px;
  margin-left: 605px;
  margin-top: -50px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 942px;
  margin-top: 150px;
  margin-left: 230px;
}

.form-grid select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 20px;
}
.kelurahan {
  margin-top: -79px;
}

button {
  background-color: teal;
  color: white;
  border: none;
  padding: 12px 97px;
  font-size: 20px;
}
button:hover {
  background-color: yellow;
  border-radius: 5px;
  cursor: pointer;
}
.button {
  margin-left: 230px;
  display: flex;
  gap: 0px;
}
.card {
  background: white;
  border-radius: 20px;
  padding: 15px; 
  width: 320px; 
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-top: 100px;
  margin-left: 300px;
}
.card-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border-radius: 15px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.card-title {
  font-size: 18px; /* Dari 24px → 18px */
  font-weight: bold;
  color: #333;
  margin-bottom: 8px; /* Dari 10px → 8px */
  background-color: white;
}

.card-description {
  font-size: 14px; /* Dari 16px → 14px */
  color: #666;
  line-height: 1.5; /* Dari 1.6 → 1.5 */
  margin-bottom: 15px; /* Dari 20px → 15px */
  background-color: white;
}

.card-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.card-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.card-button:active {
  transform: scale(0.98);
}

.card-article {
  min-height: 1100px;
  border: 8px solid white;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
footer {
  padding: 20px;
  background-color: green; 
  width: 100%;
  margin-top: -100px;
  height: 100px;
}
footer p {
  font-size: 20px;
  margin-right: 0px;
  color: orange;
  display: inline-block;
  padding-left: 100px;
}

body,main,section {
  background-color: lightgreen;
  
}
article {
  background-color: white;
  width: 100%;
  height: 1200px;
}

