/*upload section*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 5%;
  background-color: #000;
}
.hero-text-footer {
  max-width: 400px;
}
.hero-text-footer h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
}
.hero-text-footer p {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #ccc;
}
.buttons-footer {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.btn.yellow {
  background-color: #fdb515;
  color: black;
}
.btn.outline {
  border: 1px solid #fff;
  color: white;
}
.hero-images-footer {
  display: flex;
  gap: 20px;
}
.hero-images-footer img {
  width: 250px;
  height: auto;
  border-radius: 12px;
}

.container-foot {
  background-color: #FFB81C;
  color: #002f6c;
  padding: 40px;    
    
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.left-section {
  max-width: 500px;
}

.left-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.left-section h1 span {
  color: #002f6c;
}

.left-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.join-button {
  background-color: #002f6c;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.right-section {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  max-width: 480px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.right-section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.subtext {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}

.upload-box {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
  background-color: #f9f9f9;
}

.upload-label {
  display: block;
  color: #002f6c;
}

.upload-icon {
  font-size: 2rem;
  color: #0055cc;
  margin-bottom: 10px;
}

.click-text {
  font-weight: bold;
  color: #0055cc;
}

.file-note {
  font-size: 0.75rem;
  color: #666;
  margin-top: 10px;
}

.upload-button {
  background-color: #002f6c;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.buttons {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.btn.yellow {
  background-color: #fdb515;
  color: black;
}
.btn.outline {
  border: 1px solid #fff;
  color: white;
}

/* Footer Styles */
.footer {
  background-color: #0033a0;
  color: white;
  padding: 40px 5%;
  font-family: 'Inter', sans-serif;
}

.footer-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-divider {
  width: 2px;
  height: 50px;
  background-color: white;
}

.footer-title {
  font-size: 1rem;
}

.footer-title strong {
  display: block;
  margin-top: 5px;
}

.footer-line {
  height: 1px;
  background-color: #ffffff;
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-address {
  max-width: 300px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
}

.social-icons a {
  color: white;
  font-size: 1.1rem;
  padding: 0px 2px;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  color: white;
}

.footer-legal-left {
  margin-bottom: 10px;
}

.footer-legal-right a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
  font-size: 0.85rem;
}

.footer-legal-right .divider {
  margin: 0 8px;
  color: white;
}

@media (max-width: 768px) {
    /*upload section*/
    .container-foot {
      padding: 20px !important;
      flex-direction: column !important;
      gap: 20px !important;
    }

    .left-section h1 {
      font-size: 1.8rem !important;
    }

    .left-section p {
      font-size: 0.95rem !important;
    }

    .right-section {
      padding: 20px !important;
    }

    .right-section h2 {
      font-size: 1.2rem !important;
    }

    .right-section .subtext {
      font-size: 0.9rem !important;
    }

    .upload-box {
      padding: 30px 20px !important;
    }

    .upload-icon {
      font-size: 2.5rem !important;
    }

    .click-text {
      font-size: 1rem !important;
    }

    .upload-button,
    .join-button {
      font-size: 0.95rem !important;
      padding: 10px 20px !important;
    }
  
    
    
  .motto {
      display: none;
  }    
    
  .footer {
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 0.9rem;
  }

  .footer-address {
    font-size: 0.85rem;
  }

  .footer-links h4 {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-legal {
    font-size: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-legal-right a {
    font-size: 0.75rem;
    margin-left: 0;
    margin-right: 10px;
  }
  
  .social-icons {
    justify-content: flex-start;
    gap: 8px;
  }
  
   .hero-footer {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  
  .hero-text-footer h1 {
    font-size: 2.3rem;
  }

  .hero-images-footer {
    align-items: center;
    gap: 10px;
  }

  .hero-images-footer img {
    width: 50%;
    max-width: 100%;
  }
  
}

