/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #0d1321;
  padding: 40px 20px;
  line-height: 1.6;
}
/* Headings */
    h1, h2, h3, h4, h5, h6, .subheading {
      font-family: 'EB Garamond', serif; /* Changed from Times New Roman */
    }


h2 {
  text-align: center;
  font-size: 2rem;
  color: #fca311;
  margin-bottom: 10px;
}

p {
  text-align: center;
  font-size: 1rem;
  color: #374d5b;
  margin-bottom: 40px;
}

/* Form Container */
.upload-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.upload-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #284b63;
}

.upload-form input[type="text"],
.upload-form input[type="email"],
.upload-form input[type="file"],
.upload-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 2px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  background-color: #fffefc;
  transition: border-color 0.3s;
}

.upload-form input:focus,
.upload-form textarea:focus {
  border-color: #fca311;
  outline: none;
}

.upload-form button {
  width: 100%;
  padding: 14px;
  background-color: #fca311;
  color: #0d1321;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.upload-form button:hover {
  background-color: #0d1321;
  color: #fca311;
}

/* Responsive Design */
@media (max-width: 600px) {
  .upload-form {
    padding: 24px 16px;
  }

  h2 {
    font-size: 1.6rem;
  }

  p {
    font-size: 0.95rem;
  }
}