#lastSection{
  height: 470px;
  width: 100%;
  font-family: 'sora';
  margin-top: 100px;
}
#last_header{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#logo{
  height: auto;
  width: 180px;
}
#icon{
  width: 55px;
  height: auto;
}
#last_btn{
  background-color: #0B1014;
  color: var(--primary-color);
  width: auto;
  max-width: 350px;
  height: auto;

  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
#last_line {
  width: 100%;
  height: 2px;
  background: linear-gradient(70deg, transparent 0%, #2BAC59 50%,transparent 100%);
  margin: 10px auto;
}
#last_main{
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
#socials{
  padding: 10px;
  h2{
    font-size: 1.2rem;
    letter-spacing: -.7px;
    text-align: center;
    margin-bottom: 22px;
    font-weight: 600;
    animation: pulseSocial 3s infinite;
  }
}
@keyframes pulseSocial {
  0%{
    transform: scale(1.05);
    color: #2BAC59;
  }50%{
    transform: scale(1);
    color: aliceblue;
  }100%{
    transform: scale(1.05);
    color: #2BAC59;
  }
}
#social_icons{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
#social_icons li{
  margin-right: 7px;
  cursor: pointer;

  transition: 0.3s ease;
}
#social_icons li:hover{
  opacity: .6;
  transform: scale(1.05);
}
#social_icons img{
  width: 25px;
  height: auto;
  object-fit: cover;
  justify-content: center;
}
#last_contacts{
  margin-top: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  p{
    font-size: .9rem;
    text-align: center !important;
    color: inherit !important;
  }h2{
    font-size: 1.2rem;
    letter-spacing: -.7px;
    text-align: center;
    margin-bottom: 11px;
    font-weight: 600;
    animation: pulseSocial 3s infinite;
  }
}
.contacts{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
}
.contacts img{  
  width: 25px;
  height: auto;
  object-fit: cover;
  justify-content: center;
  margin-right: 7px;
}
.contact{
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  p{
    color: var(--primary-color);
  }
}
#last_validation{
  padding: 10px;
}
#last_validation #contrate_btn{
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, #103d2e, #092218);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'sora';
  padding: 10px 20px;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  img{
    width: 30px;
    height: auto;
    object-fit: cover;
  }
}
#contrate_btn:hover{
  transform: scale(1.05);
}
#royalties{
  height: 110px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  p{
    text-align: center;
    font-size: .8rem;
    font-weight: 300;
    color: #545454;
  }a{
    text-decoration: none;
    color: var(--primary-color);
    font-size: .7rem;
    font-weight: 300;
    transition: 0.3s ease;
    color: #545454;
  }
}
#fourcoders{
  list-style: none;
  text-decoration: none;
  color: var(--primary-color) !important; 
  font-weight: 500 !important;
  font-size: .7rem !important;
  transition: 0.3s ease;
}
#fourcoders:hover,
a:hover{
  opacity: .6;
}
/* ====== Media Query for Mobile Responsiveness ====== */
@media (max-width: 768px) {
  #lastSection {
    margin-top: 50px;
    height: auto;
  }
  #last_header {
    justify-content: space-between;
    padding: 5px;
    gap: 15px;
    text-align: center;
    align-items: center;
  }
  #logo {
    width: auto;
    max-width: 100px;
  }
  #icon {
    width: 45px; 
  }
  #last_btn {
    width: auto;
    font-size: 1rem !important;
    background: none;
  }
  #last_main {
    flex-direction: column;
    height: auto;
    align-items: center;
  }
  #social_icons {
    gap: 15px;
    align-items: center;
    width: 100%;
  }
  #social_icons li {
    margin-right: 0; 
    margin-bottom: 10px;
  }
  #last_contacts {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: inherit !important;
  }#last_contacts a {
    text-decoration: none;
    color: inherit;
  }
  .contact {
    margin-top: 15px; 
    align-items: center;
    text-decoration: none;
    p{
      color: var(--primary-color);
    }
  }
  #last_validation {
    margin-top: 20px;
  }
  #royalties p{
    font-size: .65rem;
  }
  #royalties a{
    font-size: .45rem;
  }
  #fourcoders {
    font-size: .65rem !important;
  }
}
/* ====== Media Query for Smaller Mobile Devices ====== */
@media (max-width: 480px) {
  #last_btn {
    width: auto;
    font-size: 1rem !important;
    background: none;
  }
  #last_header{
    display: flex;
    justify-content: space-around;
  }
  #social_icons{
    gap: 15px;
    align-items: center;
  }
  #social_icons img {
    width: 35px;
  }
  #icon {
    width: 45px; 
  }
  #socials h2 {
    font-size: 1.1rem;  
    text-align: center;
  }
  #last_validation h2{
    font-size: 1rem; 
    text-align: center;
  }
  #last_contacts h2 {
    font-size: 1.1rem; 
    text-align: center;
  }
}