/* Container */
.download-container {
  width: 400px;
  max-width: 100%;
  margin: 50px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Dropdown button */
.dropdown-btn {
  width: 100%;
  padding: 14px 20px;
  background:  #c58f33 ;/* Dark blue */
  color: #1c1c1c;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.dropdown-btn:hover {
  background: #d6ba8a; /* Lighter blue */
  transform: translateY(-2px);
}

/* Form Box */
.form-box {
  display: none;
  margin-top: 15px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Inputs */
.form-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-box input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 6px rgba(59,130,246,0.3);
  outline: none;
}

/* Submit button */
.form-box button {
  width: 100%;
  padding: 14px;
  background: #16a34a; /* Green */
  color: #fff;
  border: none;
  border-radius: 35px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.form-box button:hover {
  background: #22c55e; /* Lighter green */
  transform: translateY(-2px);
}

/* Brochure Box */
.brochure-box {
  display: none;
  margin-top: 20px;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.6s ease, transform 0.3s ease;
}

.brochure-box img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.brochure-box img:hover {
  transform: scale(1.03);
}

.brochure-box p {
  margin-top: 12px;
  font-weight: 600;
  font-size: 15px;
  color: #1e3a8a; /* Dark Blue */
}

/* Responsive */
@media screen and (max-width: 400px) {
  .download-container {
    width: 95%;
  }
  .brochure-box img {
    max-width: 100%;
  }
}

h3{
    text-align: center;
}
