*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  scroll-behavior: smooth;
}

:root {
  --accent: #4CAF50;
  --bg-light: #f7f7f7;
  /* --bg-light: #ccc; */
  --text-main: #222;
}



body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #222;
}


.header {
    padding: 20px 0;
    background: var(--bg-light);
 }

 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
 }

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.header__logo {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Gravitas One", serif;
}

.navbar__list {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 0px;
  padding: 0px;
}

.navbar__item {
  list-style: none;
  position: relative; 
}

.navbar__link {
  display: block;
  padding: 10px 15px;
  border-radius: 15px;
  background: #333;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

button.navbar__link {
  padding: 15px 20px;
  border-radius: 15px;
  background: #333;
  color: #fff;
  transition: background 0.3s;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.navbar__link:hover,
.navbar__link:focus {
  background: orange;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #333;
  border-radius: 10px;
  padding: 5px 0;
  z-index: 10;
}

.navbar__item--dropdown:hover .dropdown,
.navbar__item--dropdown:focus-within .dropdown {
  display: block;
}

.dropdown__item {
  list-style: none;
}

.dropdown__link {
  display: block;
  padding: 10px 15px;
  min-width: 200px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown__link:hover {
  background: orange;
}

.hero { 
     padding: 120px 0;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}


.hero__image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    padding: 12px 24px;
    border-radius: 14px;
    
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    
    transition: background 0.3s, transform 0.2s;
}

.button--primary {
    background: var(--accent);
    color: white;
}

.button--primary:hover {
    transform: scale(0.97);
}

.benefits {
    padding: 80px 0;
}

.benefits--light {
  background: var(--bg-light);
}

.benefits__content {
    display: flex;
    gap: 20px;
    flex-direction: column;
    text-align: center;
}

.benefits__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 0px;
    padding: 0px;
 }

.benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    list-style-type: none;
    transition: 0.5s;
 }

 .benefits__item:hover {
    background-color: rgb(255, 174, 25);
    transform: scale(1.01);
 }

.process { 
    padding: 80px 0;

}

.process__list { 
    line-height: 40px;
}

.process__item {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.trust {
    padding: 80px 0;
 }

.trust--accent {
  background: var(--accent);
  color: white;
}


.trust__list { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 0px;
    padding: 0px;
}

.trust__item {
    display: flex;
    flex-direction: column;
    border: #ccc solid 1px;
    padding: 20px;
    list-style: none;
    gap: 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
    transition: transform 0.3s, box-shadow 0.3s;
 }

.trust__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

 .trust__image {
    aspect-ratio: 5 / 5;
    overflow: hidden;
    border-radius: 16px;
 }

 .trust__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
 }

.trust__item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
} 


.call { 
    padding: 80px 0;
}

.call__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    font-weight: 600;
    max-width: 600px;
    width: 100%;
}

form:focus-within {
  background-color: #f0f8ff;
  border: 1px solid #007bff;
  border-radius: 5px;
}



.call__content p {
    font-size: 20px;
}

label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
    width: 100%;
    font-size: 0.9rem;
    color: #555;
}

label input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}


label:focus-within input {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
  outline: none;
}


.call__content .button {
  margin-top: 20px;
}


.call__content form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.call__content h2 {
  margin-bottom: 10px;
}

.call__content p {
  margin-bottom: 30px;
  color: #555;
  text-align: center;
}

@import url('https://fonts.googleapis.com/css2?family=Gravitas+One&display=swap');

.footer {
  background: #222;
  color: #aaa;
  padding: 40px 0;
}

.footer p {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Gravitas One", serif;
}

.footer p {
  letter-spacing: 1px;
}


.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--accent);
  color: #fff;
  border-radius: 50%;

  text-decoration: none;
  font-size: 20px;

  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.scroll-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}


@media (max-width: 1024px) {
  .header__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  
  .trust__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
  }
}

@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  .navbar__list {
    flex-wrap: wrap;
  }
}

@media (max-width: 425px) {
  .navbar__list {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar__link {
    width: 100%;
    text-align: center;
  }

  .trust__list {
    grid-template-columns: 1fr;
  }
}
