/* ===== CONTACT PAGE ===== */

.strand-contact {
  max-width: 500px;
  margin: 60px auto; 
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 4px;  
}

.strand-contact__title {
  font-size: 24px;
  font-weight: 600; 
  text-align: center;
  margin-bottom: 30px;
}

.strand-contact-form {
  display: grid;
  gap: 20px;
}

.form-field {  
  display: flex;
  flex-direction: column;
}

.form-field label {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px; 
  color: #666;
}

.strand-contact-form .form-field input,
.strand-contact-form .form-field textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;  
}

.strand-contact-form .form-field input:focus,
.strand-contact-form .form-field textarea:focus {
  outline: none;
  border-color: #666;
}

.form-field textarea {
  resize: vertical; 
}

.form-actions {
  margin-top: 10px;
}

.form-actions button {
  background: #000;
  color: #fff;
  border: none; 
  width: 100%;
  padding: 12px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
}

.form-actions button:hover {
  background: #333;  
}
