body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f5f0;
  color: #5a4a42;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}

#leaves-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.leaf {
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
}

header {
  background-color: #a86832;
  background: linear-gradient(to right, #a86832, #cb8d4d);
  padding: 25px 0;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  position: relative;
  z-index: 1;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3.5rem;
  color: #fff;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: normal;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 10px;
  color: #f9f5f0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.option-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin: 30px auto;
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
  max-width: 600px;
  border: 1px solid #e0d5c5;
  position: relative;
}

.preferred-option {
  border-left: 5px solid #a86832;
}

.option-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background-color: #6b4226;
  color: white;
  font-size: 0.9rem;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
}

.option-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: #6b4226;
  margin-bottom: 15px;
  font-weight: 500;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  display: inline-block;
  background-color: #a86832;
  color: white;
  font-size: 0.8rem;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
}

.google-button {
  background-color: #4285F4;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 20px 0;
  box-shadow: 0 2px 5px rgba(66, 133, 244, 0.3);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.google-button:hover {
  background-color: #3367D6;
}

.google-button img {
  margin-right: 10px;
  height: 24px;
  width: 24px;
}

.upload-area-content {
  margin: 20px 0 0 0;
  padding-top: 20px;
  border-top: 1px dashed #e0d5c5;
}

.file-input {
  display: none;
}

.upload-button {
  background-color: #c17a38;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 20px 0;
  box-shadow: 0 2px 5px rgba(160, 82, 45, 0.2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.upload-button:hover {
  background-color: #d68c45;
}

.submit-button {
  background-color: #6b4226;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
  box-shadow: 0 2px 5px rgba(107, 66, 38, 0.2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.submit-button:hover {
  background-color: #7d4e2e;
}

.preview {
  margin: 20px 0;
  border-radius: 5px;
  max-width: 100%;
  display: none;
}

.preview img,
.preview video {
  max-width: 100%;
  max-height: 150px;
  display: inline-block;
  margin: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.file-name {
  margin-top: 10px;
  font-style: italic;
  color: #888;
}

.progress-bar {
  height: 5px;
  background-color: #e8dfd3;
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
  display: none;
}

.progress {
  height: 100%;
  background-color: #bf6c37;
  width: 0%;
  transition: width 0.3s;
}

.divider {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #e0d5c5;
  width: 80%;
}

.success-message {
  color: #70541e;
  margin: 20px 0;
  font-weight: bold;
  display: none;
  background-color: rgba(255, 248, 225, 0.7);
  padding: 10px;
  border-radius: 5px;
  border-left: 4px solid #d4a74c;
}

.error-message {
  color: #8e2c19;
  margin: 20px 0;
  font-weight: bold;
  display: none;
  background-color: rgba(255, 235, 230, 0.7);
  padding: 10px;
  border-radius: 5px;
  border-left: 4px solid #c75240;
}

footer {
  padding: 20px;
  background-color: #6b4226;
  color: #fff;
  margin-top: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.8rem;
  }

  .container {
    padding: 10px;
  }

  .option-title {
    font-size: 1.4rem;
  }
}
