*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
:root{
  --primary-color: #B9FF66;
}

.navbar{
  width: 100%;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left img{
  width: 36px;
  height: 36px;
}

.brand-text{
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.nav-right{
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu{
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-menu a{
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

.nav-menu a:hover::after{
  width: 100%;
}

.btn-quote{
  text-decoration: none;
  padding: 10px 22px;
  color: #000000;
  border: 1px #000 solid;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-quote:hover{
  background: var(--primary-color);
  transform: translateY(-2px);
}

@media (max-width: 992px){
  .nav-right{
    gap: 20px;
  }

  .nav-menu{
    gap: 16px;
  }
}

@media (max-width: 768px){
  .navbar{
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .nav-right{
    flex-direction: column;
    gap: 14px;
  }

  .nav-menu{
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

.hero{
  min-height: calc(100vh - 80px);
  width: 100%;
  display: flex;
  align-items: center;
  padding: 40px;
  background: #ffffff;
}

.hero-left{
  width: 50%;
}

.hero-left h1{
  font-size: 48px;
  color: #000;
  margin-bottom: 16px;
}

.hero-left p{
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-btn{
  display: inline-block;
  text-decoration: none;
  padding: 14px 28px;
  background: #191A23;
  color: #A8A8AD;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
}

.hero-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  }

  .hero-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  }

.hero-right{
  width: 50%;
  display: flex;
  justify-content: center;
}

.hero-right img{
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px){
  .hero-left h1{
    font-size: 38px;
  }
}

@media (max-width: 768px){
  .hero{
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right{
    width: 100%;
  }

  .hero-left p{
    margin-left: auto;
    margin-right: auto;
  }
}

.brands{
  width: 100%;
  padding: 30px 40px;
  background: #ffffff;
}

.brands-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brands-wrapper img{
  max-height: 40px;
  width: auto;
  opacity: 0.8;
  transition: 0.3s ease;
}

.brands-wrapper img:hover{
  opacity: 1;
  transform: scale(1.05);
}


@media (max-width: 992px){
  .brands-wrapper{
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}

@media (max-width: 576px){
  .brands-wrapper img{
    max-height: 32px;
  }
}
.Services{
  margin-top: 100px;
  padding: 0px 40px;
}
.service-top{
  display: flex;
  gap: 40px;
}
.ser-top-heading{
  font-size: 36px;
  background-color: var(--primary-color);
  color: #000;
  text-align: center;
  padding-top: 6px;
  margin-bottom: 16px;
  border-radius: 5px;
  height: 55px;
  width: 160px;
}
.ser-top-para{
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.service-cards{
  padding: 80px 40px;
  background: #ffffff;
}

.cards-grid{
  display: grid;
  grid-template-columns: repeat(2, 600px);
  justify-content: space-between;
  gap: 40px 40px;
}

.card{
  height: 310px;
  border: 1px solid #000;
  border-radius: 45px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
}

.card-1{
  background: #F3F3F3; 
  box-shadow: 0px 5px #191A23;
}
.card-2{ 
  background: var(--primary-color); 
  box-shadow: 0px 5px #191A23;
}
.card-3{ 
  background: #191A23; 
  box-shadow: 0px 5px #191A23;
}

.card-left{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 260px;
}

.card-left h3{
  font-size: 25px;
  font-weight: 700;
  color: #000;
  padding: 20px;
}

.card-3 h3{
  background-color: #ffffff;
  width: 220px;
  border-radius: 15px;
}

.card-2 h3{
  background-color: #ffffff;
  width: 220px;
  border-radius: 15px;
}

.card-1 h3{
  background-color: var(--primary-color);
  width: 220px;
  border-radius: 15px;
}

.ser-last-card{
  background-color: var(--primary-color)!important;
}

.card-bottom{
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-bottom p{
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.dark-text{
  color: #fff !important;
}

.icon{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
}

.icon-dark{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
}

.card-right{
  display: flex;
  align-items: center;
}

.card-right img{
  max-width: 200px;
  height: auto;
}

.card-1:hover,.card-2:hover,.card-3:hover{
  transform: translateY(-4px);
  box-shadow: 0px 8px #191A23;
}


@media (max-width: 1300px){
  .cards-grid{
    grid-template-columns: 1fr 1fr;
  }

  .card{
    width: 100%;
  }
}

@media (max-width: 768px){
  .cards-grid{
    grid-template-columns: 1fr;
  }

  .card{
    flex-direction: column;
    height: auto;
    gap: 20px;
  }

  .card-right{
    justify-content: center;
  }
}

.rect-section{
  padding: 80px 40px;
  background: #ffffff;
}

.rect-box{
  max-width: 1200px;
  margin: auto;
  padding: 60px;
  border-radius: 45px;
  background: #F3F3F3;
  display: flex;
  align-items: center;
  gap: 40px;
}

.rect-left{
  width: 50%;
}

.rect-left h2{
  font-size: 36px;
  color: #000;
  margin-bottom: 18px;
}

.rect-left p{
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 480px;
}

.rect-btn{
  display: inline-block;
  padding: 14px 30px;
  background: #191A23;
  color: #A8A8AD;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.rect-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  }

  .rect-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  }

.rect-right{
  width: 50%;
  display: flex;
  justify-content: center;
}

.rect-right img{
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px){
  .rect-left h2{
    font-size: 30px;
  }
}

@media (max-width: 768px){
  .rect-box{
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .rect-left,
  .rect-right{
    width: 100%;
  }

  .rect-left p{
    margin-left: auto;
    margin-right: auto;
  }
}

.Case-studies{
  margin-top: 100px;
  padding: 0px 40px;
}

.CS-top{
  display: flex;
  gap: 40px;
}

.CS-top-heading{
  font-size: 36px;
  background-color: var(--primary-color);
  color: #000;
  text-align: center;
  padding-top: 6px;
  margin-bottom: 16px;
  border-radius: 5px;
  height: 55px;
  width: 250px;
}

.CS-top-para{
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.rect-dark-section{
  padding: 80px 40px;
  background: #ffffff;
}

.rect-dark{
  max-width: 1200px;
  margin: auto;
  padding: 70px 60px;
  border-radius: 45px;
  background: #191A23;
  display: flex;
  gap: 40px;
}

.dark-box{
  flex: 1;
  background: #191A23;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 30px;
}

.border-right{
  border-right: 2px solid rgba(255,255,255,0.25);
}

.top-text{
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
}

.bottom-row{
  display: flex;
  align-items: center;
  gap: 12px;
}

.light-text{
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.arrow-icon{
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
}

.light-text:hover{
  text-decoration: underline;
}

@media (max-width: 992px){
  .rect-dark{
    gap: 30px;
  }
}

@media (max-width: 768px){
  .rect-dark{
    flex-direction: column;
  }

  .border-right{
    border-right: none;
    border-bottom: 2px solid rgba(255,255,255,0.25);
    padding-bottom: 30px;
  }
}

.Our-Working-Process{
  margin-top: 100px;
  padding: 0px 40px;
}

.OWP-top{
  display: flex;
  gap: 40px;
}

.OWP-top-heading{
  font-size: 36px;
  background-color: var(--primary-color);
  color: #000;
  text-align: center;
  padding-top: 6px;
  margin-bottom: 16px;
  border-radius: 5px;
  height: 55px;
  width: 400px;
}

.OWP-top-para{
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.process-section{
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.process-box{
  width: 1234px;
  background-color: #F3F3F3;
  border: 1px solid #000;
  border-radius: 45px;
  padding: 41px 60px;
  overflow: hidden;
  transition: background-color 0.3s ease;
  box-shadow: 0px 5px #191A23;
}

.process-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.process-title{
  display: flex;
  gap: 20px;
}

.process-title h2{
  font-size: 48px;
}

.process-title span{
  font-size: 25px;
  font-weight: 600;
}

.toggle-btn{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.process-content{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.process-content p{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #000;
  font-size: 16px;
}

.process-box.active{
  background-color: var(--primary-color);
}

.process-box.active .process-content{
  max-height: 200px;
}

@media (max-width: 1280px){
  .process-box{
    width: 90%;
  }
}

@media (max-width: 992px){
  .process-title h2{
    font-size: 40px;
  }

  .process-title span{
    font-size: 16px;
  }

  .process-content p{
    font-size: 15px;
  }
}

@media (max-width: 768px){
  .process-box{
    padding: 30px 24px;
    border-radius: 30px;
  }

  .process-header{
    align-items: center;
  }

  .process-title{
    gap: 12px;
  }

  .process-title h2{
    font-size: 32px;
  }

  .process-title span{
    font-size: 15px;
    line-height: 1.4;
  }

  .toggle-btn{
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .process-box.active .process-content{
    max-height: 300px;
  }
}

@media (max-width: 480px){
  .process-box{
    padding: 24px 18px;
  }

  .process-title{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .process-title h2{
    font-size: 28px;
  }

  .process-title span{
    font-size: 14px;
  }
}

.Team{
  margin-top: 100px;
  padding: 0px 40px;
}

.Team-top{
  display: flex;
  gap: 40px;
}

.Team-top-heading{
  font-size: 36px;
  background-color: var(--primary-color);
  color: #000;
  text-align: center;
  padding-top: 6px;
  margin-bottom: 16px;
  border-radius: 5px;
  height: 55px;
  width: 100px;
}

.Team-top-para{
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.team-section{
  padding: 80px 40px;
  background: #ffffff;
}

.team-grid{
  display: grid;
  grid-template-columns: repeat(3, 387px);
  gap: 30px;
  justify-content: center;
}

.team-card{
  height: 331px;
  border: 1px solid #000;
  border-radius: 45px;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 5px #191A23;
}

.card-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.profile{
  display: flex;
  gap: 16px;
}

.profile img{
  width: 105.65px;
  height: 102.82px;
  object-fit: cover;
}

.info h4{
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.info span{
  font-size: 14px;
  color: #000;
}

.linkedin{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.card-divider{
  border-bottom: 1px solid #000;
  margin: 20px 0;
}

.card-text{
  font-size: 15px;
  color: #000;
  line-height: 1.5;
}

.team-card:hover{
  transform: translateY(-4px);
  box-shadow: 0px 8px #191A23;
}

.a-team-s{
  display: flex;
  justify-content: right;
  margin-top: 50px;
}

.team-btn{
  height: 68px;
  width: 269px;
  border-radius: 14px;
  padding: 20px 35px;
  background-color: #191A23;
  color: #ffffff;
  font-size: 16px;
  font-weight: 200;
  border: none;
}

.team-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  }

  .team-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  }

@media (max-width: 1200px){
  .team-grid{
    grid-template-columns: repeat(2, 387px);
  }
}

@media (max-width: 768px){
  .team-grid{
    grid-template-columns: 1fr;
  }

  .team-card{
    width: 100%;
    height: auto;
  }
}

.Contact-us{
  margin-top: 100px;
  padding: 0px 40px;
}

.cu-top{
  display: flex;
  gap: 40px;
}

.cu-top-heading{
  font-size: 36px;
  background-color: var(--primary-color);
  color: #000;
  text-align: center;
  padding-top: 6px;
  margin-bottom: 16px;
  border-radius: 5px;
  height: 55px;
  width: 230px;
}

.cu-top-para{
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.contact-section {
    width: 1240px;
    height: 773px;
    border-radius: 45px;
    margin: 60px;
    padding: 60px 0px 80px 100px;
    background-color: #F3F3F3;
    display: flex;
    gap: 10px;
    box-sizing: border-box;
    font-family: 'Sora', 'Segoe UI', sans-serif;
    overflow: hidden;
  }

  @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

  .contact-left {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-right: 40px;
  }

  .contact-right {
    width: 40%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .contact-image {
    width: 150%;
    height: 100%;
    display: block;
    transform: translatex(100px);
  }

  .radio-group {
    display: flex;
    gap: 28px;
    align-items: center;
  }

  .radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
  }

  .radio-label:hover {
    color: #111;
  }

  .radio-label input[type="radio"] {
    display: none;
  }

  .radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, background-color 0.25s;
    flex-shrink: 0;
    position: relative;
  }

  .radio-custom::after {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.2s, transform 0.2s;
  }

  .radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #111;
  }

  .radio-label input[type="radio"]:checked + .radio-custom::after {
    opacity: 1;
    transform: scale(1);
  }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .field-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .field-input,
  .field-textarea {
    width: 100%;
    background-color: #fff;
    border: 1.5px solid #111;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    color: #222;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
  }

  .field-input::placeholder,
  .field-textarea::placeholder {
    color: #BDBDBD;
  }

  .field-input:hover,
  .field-textarea:hover {
    border-color: #C0C0C0;
    background: #FAFAFA;
  }

  .field-input:focus,
  .field-textarea:focus {
    border-color: #222;
    box-shadow: 0 0 0 3px rgba(34,34,34,0.07);
    background: #fff;
  }

  .field-textarea {
    resize: none;
    height: 110px;
    line-height: 1.6;
  }

  .send-btn {
    width: 100%;
    height: 68px;
    align-self: flex-start;
    background-color: #191A23;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 20px 35px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background-color 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  }

  .send-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  }

  .send-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  }

  @media (max-width: 1280px) {
    .contact-section {
      width: 100%;
      height: auto;
      min-height: 600px;
    }
  }

  @media (max-width: 900px) {
    .contact-section {
      flex-direction: column;
      height: auto;
      padding: 50px 40px 60px 40px;
      border-radius: 30px;
    }

    .contact-left {
      width: 100%;
      padding-right: 0;
    }

    .contact-right {
      width: 100%;
      height: 280px;
      border-radius: 20px;
    }
  }

  @media (max-width: 520px) {
    .contact-section {
      padding: 36px 20px 48px 20px;
      border-radius: 20px;
    }

    .send-btn {
      width: 100%;
      text-align: center;
    }
  }

  .ft {
    width: 1241px;
    min-height: 514px;
    margin: 60px auto 0 auto;
    padding: 55px 60px 50px 60px;
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
    background-color: #191A23;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 50px;
    font-family: 'Space Grotesk', sans-serif;
  }

  .ft-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .ft-logo-text {
    font-size: 20px;
    font-weight: 540;
    color: #ffffff;
    letter-spacing: 0.5px;
  }

  .ft-nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
  }

  .ft-nav-links li a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.78;
    transition: opacity 0.2s, color 0.2s;
  }

  .ft-nav-links li a:hover {
    opacity: 1;
    color: var(--primary-color);
  }

  .ft-socials {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .ft-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.22s, transform 0.2s;
    flex-shrink: 0;
  }

  .ft-social-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
  }

  .ft-divider {
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: 0.78;
    flex-shrink: 0;
  }

  .ft-center {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .ft-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ft-contact-title {
    display: inline-block;
    background-color: var(--primary-color);
    color: #191A23;
    font-size: 15px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 6px;
    letter-spacing: 0.01em;
    width: fit-content;
  }

  .ft-contact-item {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    opacity: 0.78;
  }

  .ft-address {
    line-height: 1.8;
  }

  .ft-newsletter {
    display: flex;
    align-items: center;
  }

  .ft-newsletter-box {
    background-color: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 380px;
  }

  .ft-newsletter-row {
    display: flex;
    gap: 10px;
  }

  .ft-newsletter-input {
    flex: 1;
    background-color: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #fff;
    outline: none;
    transition: border-color 0.22s, background-color 0.22s;
  }

  .ft-newsletter-input::placeholder {
    color: #fff;
  }

  .ft-newsletter-input:focus {
    border-color: var(--primary-color);
    background-color: rgba(185,255,102,0.06);
  }

  .ft-newsletter-btn {
    background-color: var(--primary-color);
    color: #191A23;
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 540;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.22s, transform 0.18s;
  }

  .ft-newsletter-btn:hover {
    background: #a8f050;
    transform: translateY(-1px);
  }

  .ft-bottom {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }

  .ft-copy {
    color: #ffffff;
    opacity: 0.78;
    font-size: 14px;
  }

  .ft-privacy {
    color: #ffffff;
    opacity: 0.78;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
  }

  .ft-privacy:hover {
    color: var(--primary-color);
  }

  @media (max-width: 1280px) {
    .ft {
      width: 100%;
    }
  }

  @media (max-width: 900px) {
    .ft {
      padding: 44px 36px 40px 36px;
      gap: 36px;
      border-top-left-radius: 30px;
      border-top-right-radius: 30px;
    }

    .ft-nav {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }

    .ft-nav-links {
      flex-wrap: wrap;
      gap: 20px;
    }

    .ft-center {
      flex-direction: column;
    }

    .ft-newsletter-box {
      min-width: unset;
      width: 100%;
    }
  }

  @media (max-width: 520px) {
    .ft {
      padding: 36px 20px 32px 20px;
    }

    .ft-newsletter-row {
      flex-direction: column;
    }

    .ft-newsletter-btn {
      width: 100%;
    }
  }