/* Base Styles */
* { box-sizing: border-box; }
body { 
    font-family: 'Helvetica Neue', Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 10px; 
    background: #f8f9fa; 
}

/* Header */
header { text-align: center; padding: 50px 20px; }
h1 { color: #1a1a1a; font-size: 2.5rem; margin-bottom: 10px; line-height: 1.2; }
.subtitle { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto; }

/* Form Container */
.form-container { 
    background: #ffffff; 
    padding: 40px 20px; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    margin: 20px auto 50px auto; 
    max-width: 500px; 
    text-align: center; 
}
input { 
    padding: 15px; 
    width: 100%; 
    margin: 10px 0; 
    border: 2px solid #eee; 
    border-radius: 8px; 
    font-size: 1rem; 
    transition: border-color 0.3s;
}
input:focus { border-color: #27ae60; outline: none; }
button { 
    padding: 15px; 
    width: 100%; 
    background: #27ae60; 
    color: white; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 1.1rem; 
    font-weight: bold;
    margin-top: 10px;
}
button:hover { background: #219150; transform: translateY(-1px); }

/* Features Grid */
.features h2 { text-align: center; margin-bottom: 30px; }
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
    padding: 0 10px;
}
.item { 
    background: #fff; 
    padding: 25px; 
    border-radius: 10px; 
    border-left: 5px solid #27ae60;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.item h3 { margin-top: 0; color: #2c3e50; }

/* Responsive Adjustments */
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    .form-container { padding: 25px 15px; }
    header { padding: 30px 10px; }
}

.grid {
  display: grid;
  /* Creates 2 columns of equal width */
  grid-template-columns: repeat(2, 1fr); 
  /* Creates 2 rows of equal height (or use 'auto') */
  grid-template-rows: repeat(2, 1fr);    
  /* Optional: adds space between the boxes */
  gap: 10px;                             
}