/* green - #2e7d32;
var(--main-color); */

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  /*outline: 1px solid red; */
}
:root {
  --main-color: #275c29; /* change this */
}
/*----------------- HAMBURGER -----------------*/
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10000;
}

.hamburger img {
  height: 28px;
  width: auto;
}

.hamburger.rotated {
  transform: rotate(90deg);
}

.side-menu {
  position: fixed;
  top: 30px;
  right: -380px;
  width: 200px;
  height: auto;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  padding: 30px 20px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0 20px;
}

.side-menu.open {
  right: 0;
}

.side-menu ul {
  list-style: none;
  margin-top: 40px;
}

.side-menu ul li {
  margin-bottom: 20px;
  text-align: center;
}

.side-menu ul li a {
  text-decoration: none;
  color: var(--main-color);
  font-size: 17px;
  font-weight: 500;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
  float: right;
}

.side-social {
  margin-top: 30px;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.side-social img {
  height: 24px;
  width: auto;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(195, 193, 193, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9997;
}

.menu-overlay.open {
  display: block;
}
/*----------------- NAVBAR -----------------*/
nav {
  display: flex;
  padding: 1% 6%;
  justify-content: space-between;
  align-items: center;
  background: rgb(240, 240, 240);
  z-index: 10000;
  position: relative;
}

nav img {
  width: 80px;
  display: block;
}
nav a:first-child {
  flex: 0;
  display: inline-flex;
  align-items: center;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}
.nav-links ul li a {
  color: var(--main-color);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 12px;
}
.nav-links ul li:after {
  display: none;
}
.nav-links ul li:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}
.nav-links ul li a:hover {
  font-weight: bold;
}
nav .fa {
  display: none;
}

.social-icons {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.social-icons a img {
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s;
  margin-left: 20px;
  vertical-align: middle;
}
.social-icons a img[alt="youtube"] {
  height: 19px;
}
.social-icons a img[alt="facebook"] {
  height: 26px;
}
.social-icons a img[alt="Instagram"] {
  height: 20px;
}
.social-icons a img:hover {
  opacity: 0.7;
}
.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  min-width: 150px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}
.dropdown-menu li {
  padding: 8px 10px;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
/*----------------- HEADER -----------------*/
.header {
  min-height: 70vh;
  width: 100%;
  /*background-image:url(assets/banner.jpg);*/
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url(assets/agronis_banner.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.text-box {
  width: 90%;
  color: rgb(250, 250, 250);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 62px;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 14px;
  line-height: 1.4;
}
.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 12px 54px;
  font-size: 15px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.hero-btn:hover {
  border: 1px solid #08541e;
  background: var(--main-color);
  transition: 1s;
}
/*----------------- PRODUCTS -----------------*/
.products {
  padding: 40px 20px;
  text-align: center;
  background: rgb(240, 240, 240);
}
.products h2 {
  padding: 30px;
}
.product-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product-box {
  width: 230px;
  padding: 25px 20px;
  border-radius: 10px;
  background: rgb(222, 227, 223);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-decoration: none;
  color: black;
}

.product-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-box img {
  width: 70%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 12px;
}

.product-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.product-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--main-color);
  color: white;
  border-radius: 5px;
  font-size: 13px;
  transition: 0.3s;
}

.product-box:hover .btn {
  opacity: 0.9;
}
/*----------------- THIRD-SECTION -----------------*/
.third-section {
  min-height: 50vh;
  width: 100%;
  /*background-image:url(assets/banner.jpg);*/
  background:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
    url(assets/agronis31.jpg);
  background-position: center 30%;
  background-size: cover;
  position: relative;
}
.third-section h2 {
  width: 90%;
  color: rgb(25, 25, 25);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 25px;
}
/*----------------- ABOUT -----------------*/

.about {
  padding: 80px 20px;
  background: rgb(240, 240, 240);
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.about-image {
  flex: 1;
  height: 700px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: var(--main-color);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}
.about-button {
  text-align: center;
  margin-top: 20px;
}
.about-btn:hover {
  opacity: 0.9;
}
/*----------------- SECTION PARTNERS -----------------*/
.partners {
  padding: 60px 20px;
  background: var(--main-color);
  text-align: center;
}

.partners p {
  font-size: 16px;
  color: #f1f1f1;
  margin-bottom: 30px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.partners-logos img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
/*----------------- CONTACT -----------------*/
.contact {
  padding: 60px 20px;
  background: #c6d1c8;
  text-align: center;
}

.contact-top h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-top p {
  font-size: 15px;
  margin-bottom: 8px;
  color: #555;
}

.contact-top a {
  color: var(--main-color);
  text-decoration: none;
}

/* Centered form */
.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  width: 100%;
}

.contact-form button {
  padding: 10px 20px;
  border: none;
  background: var(--main-color);
  color: white;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  opacity: 0.9;
}
/*----------------- ABOUT BANNER -----------------*/
.about-banner {
  min-height: 30vh;
  width: 100%;
  /*background-image:url(assets/banner.jpg);*/
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    url(assets/agronis16.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.about-banner h2 {
  width: 90%;
  color: rgb(240, 240, 240);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 45px;
}
/*----------------- BRANDS -----------------*/

.brands {
  /*padding: 10px 20px;*/
  background: rgb(240, 240, 240);
  text-align: center;
  overflow: hidden;
}

.brands-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 150px;
  width: max-content;
  animation: scroll-brands 50s linear infinite;
}

.brands-track img {
  height: 110px;
  width: auto;
  object-fit: contain;
  border-radius: 15px;
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*----------------- CONTACT BANNER -----------------*/
.contact-banner {
  min-height: 30vh;
  width: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
    url(assets/agronis7.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-banner h2 {
  width: 90%;
  color: rgb(240, 240, 240);
  text-align: center;
  font-size: 45px;
  margin: 0 0 10px 0;
}

.contact-banner p {
  color: rgb(240, 240, 240);
  text-align: center;
  font-size: 18px;
  margin: 0;
}
/*----------------- AGROSOL LIQUID HEADER -----------------*/

.agrosol-liquid-header {
  position: relative;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.agrosol-liquid-header::before {
  content: "";
  position: absolute;
  inset: -10px;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)),
    url(assets/agronis8.jpg);
  background-position: center;
  background-size: cover;
  filter: blur(7px);
  transform: scale(1.7);
  z-index: 0;
}

.agrosol-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.agrosol-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.agrosol-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.agrosol-text {
  flex: 1;
  color: white;
}

.agrosol-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.agrosol-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.agrosol-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: var(--main-color);
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 14px;
  transition: 0.3s;
}

.agrosol-btn:hover {
  opacity: 0.85;
}

/*----------------- AGROSOL INFO SECTION -----------------*/
.agrosol-info {
  padding: 70px 40px;
  background: rgb(240, 240, 240);
}

.agrosol-info-top {
  text-align: center;
  margin-bottom: 50px;
}

.agrosol-info-top h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--main-color);
}

.agrosol-info-top p {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: auto;
  line-height: 1.7;
  margin-bottom: 20px;
}

.agrosol-info-bottom {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 100px;
  max-width: 1100px;
  margin: auto;
}

.agrosol-info-text {
  flex: 1;
}

.agrosol-info-text h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--main-color);
}

.agrosol-info-text p {
  font-size: 15px;
  color: #555;
  line-height: 2;
}

.agrosol-info-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.agrosol-info-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
}

/*----------------- AGROSOL THIRD SECTION -----------------*/
.agrosol-third-section {
  padding: 70px 40px;
  background: rgb(240, 240, 240);
  text-align: left;
  /*max-width: 1100px;
  margin: auto;*/
}

.agrosol-third-section-top h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--main-color);
  max-width: 700px;
  margin: 0 auto 15px auto;
}

.agrosol-list {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}
.agrosol-third-section-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.agrosol-third-section-images img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.agrosol-third-section-bottom {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}
/*----------------- AGROSOL FOURTH SECTION -----------------*/
.agrosol-fourth-section {
  padding: 70px 40px;
  background: rgb(209, 236, 217);
  /*max-width: 1100px;*/
  margin: auto;
}

.agrosol-fourth-section h2 {
  font-size: 32px;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 40px;
}

.agrosol-fourth-content {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.agrosol-fourth-content p {
  flex: 1;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 500px;
}
/*----------------- AGROSOL FIFTH SECTION -----------------*/
.agrosol-fifth-section {
  padding: 60px 130px;
  background: rgb(240, 240, 240);
  /*max-width: 1100px;*/
  margin: auto;
}
.agrosol-fifth-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 15px;
  color: #555;
  line-height: 2;
}

.agrosol-fifth-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin: 0 auto 15px auto;
}

.agrosol-fifth-text {
  flex: 1;
}

.agrosol-fifth-text h2 {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 15px;
}

.agrosol-fifth-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.agrosol-fifth-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.agrosol-fifth-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.agrosol-fifth-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

/*----------------- AGROSOL SLIDER -----------------*/
.agrosol-slider-section {
  padding: 70px 40px;
  background: rgb(240, 240, 240);
}

.agrosol-slider {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.agrosol-slides {
  display: flex;
}

.agrosol-slide {
  min-width: 100%;
  height: 500px;
  object-fit: contain;
  display: none;
  transition: opacity 0.5s ease;
}

.agrosol-slide.active {
  display: block;
}

.agrosol-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  z-index: 10;
}

.agrosol-slider-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.agrosol-slider-btn.prev {
  left: 15px;
}

.agrosol-slider-btn.next {
  right: 15px;
}

.agrosol-slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: white;
}
/*----------------- AGROSOL VIDEO SECTION -----------------*/
.agrosol-video-section {
  padding: 20px 40px;
  background: rgb(240, 240, 240);
  text-align: center;
}

.agrosol-video-section h2 {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 40px;
}

.agrosol-video {
  max-width: 900px;
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
/*----------------- NOVAFERM MULTI HEADER -----------------*/

.novaferm-multi-header {
  position: relative;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.novaferm-multi-header::before {
  content: "";
  position: absolute;
  inset: -10px;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url(assets/agronis1.jpg);
  background-position: center;
  background-size: cover;
  filter: blur(15px);
  transform: scale(1.7);
  z-index: 0;
}

.novaferm-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.novaferm-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.novaferm-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.novaferm-text {
  flex: 1;
  color: white;
}

.novaferm-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.novaferm-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.novaferm-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: var(--main-color);
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 14px;
  transition: 0.3s;
}

.novaferm-btn:hover {
  opacity: 0.85;
}

/*----------------- NOVAFERM MULTI ABOUT -----------------*/
.novaferm-multi-about {
  padding: 60px 200px;
}

.novaferm-multi-about h2 {
  text-align: center;
  margin-bottom: 40px;
}

.novaferm-multi-about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.novaferm-multi-about-content ul {
  flex: 1;
  line-height: 1.5;
}

.novaferm-multi-about-content img {
  flex: 1;
  max-width: 30%;
  height: auto;
}
.novaferm-about-img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.novaferm-about-img-wrapper img {
  max-width: 70%;
  height: auto;
  object-fit: contain;
}
/*----------------- NOVAFERM MULTI PRIMJENA -----------------*/
.primjena {
  padding: 50px 20px;
  background: rgb(175, 207, 175);
  width: 100%; /* full width */
  box-sizing: border-box;
  overflow: hidden;
}

.primjena .container {
  max-width: 900px;
  margin: 0 auto;
}

.primjena h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #2c3e50;
}

.primjena h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #2c3e50;
  font-size: 1.4em;
}

.primjena p {
  margin-bottom: 20px;
  color: #444;
  font-size: 1em;
}

/*----------------- NOVAFERM PREDNOST -----------------*/
.prednost {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.prednost h2 {
  text-align: left;
  margin-bottom: 20px;
}

.prednost p {
  margin-bottom: 30px;
  line-height: 1.6;
  color: #333;
}
.prednost ul {
  margin-bottom: 30px;
  padding-left: 20px;
  color: #333;
  line-height: 1.6;
}

.prednost-image {
  text-align: center;
  margin-bottom: 40px;
}

.prednost-image img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.prednost-image .image-name {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: #666;
}
/*----------------- NOVAFERM ISPORUCIVO PAKIRANJE -----------------*/
.novaferm-pakiranje-section {
  padding: 60px 130px;
  background: rgb(240, 240, 240);
  /*max-width: 1100px;*/
  margin: auto;
}
.novaferm-pakiranje-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 15px;
  color: #555;
  line-height: 2;
}

.novaferm-pakiranje-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin: 0 auto 15px auto;
}

.novaferm-pakiranje-text {
  flex: 1;
}

.novaferm-pakiranje-text h2 {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 15px;
}

.novaferm-pakiranje-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.novaferm-pakiranje-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.novaferm-pakiranje-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.novaferm-pakiranje-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

/*----------------- AMINO TOP HEADER -----------------*/

.amino-top-header {
  position: relative;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.amino-top-header::before {
  content: "";
  position: absolute;
  inset: -10px;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url(assets/amino-top-banner.jpg);
  background-position: center;
  background-size: cover;
  filter: blur(15px);
  transform: scale(1.7);
  z-index: 0;
}

.amino-top-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.amino-top-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.amino-top-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.amino-top-text {
  flex: 1;
  color: white;
}

.amino-top-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.amino-top-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.amino-top-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: var(--main-color);
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 14px;
  transition: 0.3s;
}

.amino-top-btn:hover {
  opacity: 0.85;
}

/*----------------- AMINO TOP ISPORUCIVO PAKIRANJE -----------------*/
.amino-top-pakiranje-section {
  padding: 60px 130px;
  background: rgb(240, 240, 240);
  /*max-width: 1100px;*/
  margin: auto;
}
.amino-top-pakiranje-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 15px;
  color: #555;
  line-height: 2;
}

.amino-top-pakiranje-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin: 0 auto 15px auto;
}

.amino-top-pakiranje-text {
  flex: 1;
}

.amino-top-pakiranje-text h2 {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 15px;
}

.amino-top-pakiranje-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.amino-top-pakiranje-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.amino-top-pakiranje-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.amino-top-pakiranje-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

/*----------------- AMINO TOP ABOUT -----------------*/
.complex-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}
.section-title {
  text-align: center;
  margin-bottom: 80px;
}
.complex-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.complex-text {
  flex: 1;
}

.complex-text h2,
.complex-text h3 {
  margin-bottom: 15px;
}

.complex-text p {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #333;
}

.complex-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.complex-images img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}
.full-images {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.full-images img {
  width: 50%;
  border-radius: 15px;
}

/*----------------- AMINO TOP VIDEO SECTION -----------------*/
.amino-top-video-section {
  padding: 20px 40px;
  background: rgb(240, 240, 240);
  text-align: center;
}

.amino-top-video-section h2 {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 40px;
}

.amino-top-video {
  max-width: 900px;
  margin: auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
/*----------------- EXTREMO FORTE HEADER -----------------*/

.extremo-forte-header {
  position: relative;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.extremo-forte-header::before {
  content: "";
  position: absolute;
  inset: -10px;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url(assets/extremo-forte1.jpg);
  background-position: center;
  background-size: cover;
  filter: blur(5px);
  transform: scale(1.7);
  z-index: 0;
}

.extremo-forte-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.extremo-forte-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.extremo-forte-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 14px;
  object-fit: cover;
}

.extremo-forte-text {
  flex: 1;
  color: white;
}

.extremo-forte-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.extremo-forte-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.extremo-forte-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: var(--main-color);
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 14px;
  transition: 0.3s;
}

.extremo-forte-btn:hover {
  opacity: 0.85;
}

/*----------------- EXTREMO FORTE CERTIFICAT -----------------*/
.center-text {
  padding: 60px 20px;
  text-align: center;
}

.center-text p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 22px;
}
/*----------------- EXTREMO FORTE about -----------------*/
.list-image {
  padding: 60px 20px;
  background-color: rgb(56, 56, 59);
  color: #e3e3e3;
}

.list-image-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.list-image ul {
  flex: 1;
  line-height: 1.6;
}

.list-image .image {
  flex: 1;
}

.list-image img {
  max-width: 85%;
  height: auto;
  border-radius: 10px;
}

/*----------------- EXTREMO FORTE REZULTATI -----------------*/
.section-layout {
  width: 100%; /* full screen background */
  background: rgb(20, 20, 20);
  color: #e8e8e8;
  padding: 50px 0;
}

.section-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

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

.text {
  flex: 1 1 55%;
}

.text h3 {
  margin-bottom: 15px;
}

.text p {
  line-height: 1.6;
}

.images {
  flex: 1 1 40%; /* take ~40% of width */
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.images img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
}

/*----------------- EXTREMO FORTE SECTION -----------------*/
.forte-section {
  width: 100%;
  background: #ececec;
  color: #1d1d1d;
  padding: 50px 0;
  box-sizing: border-box;
}

.forte-section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.forte-section-left {
  flex: 1 1 55%;
}

.forte-section-left h2 {
  margin-bottom: 20px;
}

.forte-section-left ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.6;
}

.forte-section-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.forte-section-right img {
  max-width: 50%; /* image is 50% of right column */
  height: auto;
  display: block;
  border-radius: 10px;
}

.forte-section-right ol {
  padding-left: 20px;
  line-height: 1.6;
}
/*----------------- EXTREMO FORTE PRIMJENA -----------------*/
.extremo-primjena {
  width: 100%;
  padding: 50px 20px;
  box-sizing: border-box;
  text-align: center;
  background: rgb(55, 55, 55);
  color: rgb(224, 224, 224);
}

.extremo-primjena-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

.extremo-primjena-block {
  margin-bottom: 30px;
  text-align: left;
}

.extremo-primjena-block h3 {
  margin-bottom: 10px;
}

.extremo-primjena-block p {
  line-height: 1.6;
}

.extremo-primjena-center {
  margin-top: 40px;
  padding: 40px;
}

.extremo-primjena-center ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  margin: 20px 0 0 0;
}
/*----------------- EXTREMO FORTE ISPORUCIVO PAKIRANJE -----------------*/
.extremo-forte-pakiranje-section {
  padding: 60px 130px;
  background: rgb(240, 240, 240);
  /*max-width: 1100px;*/
  margin: auto;
}
.extremo-forte-pakiranje-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 15px;
  color: #555;
  line-height: 2;
}

.extremo-forte-pakiranje-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin: 0 auto 15px auto;
}

.extremo-forte-pakiranje-text {
  flex: 1;
}

.extremo-forte-pakiranje-text h2 {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 15px;
}

.extremo-forte-pakiranje-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.extremo-forte-pakiranje-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.extremo-forte-pakiranje-image img {
  width: 55%;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.extremo-forte-pakiranje-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

/*----------------- FOOTER -----------------*/
.footer {
  background: #033a09;
  color: white;
  padding: 50px 0 20px;
  font-size: 12px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.footer img {
  height: 70px;
  margin-bottom: 15px;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.footer ul li a:hover {
  opacity: 1;
}
.footer-icons img {
  width: auto;
  object-fit: contain;
  margin-right: 15px;
  vertical-align: middle;
}
.footer-icons img[alt="youtube"] {
  height: 19px; /* use the same values that worked for you in the navbar */
}

.footer-icons img[alt="facebook"] {
  height: 26px;
}

.footer-icons img[alt="Instagram"] {
  height: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  opacity: 0.7;
}

.hvala {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--main-color);
}

.hvala::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(254, 254, 254, 0.8)),
    url(assets/success-banner.jpg);
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.05);
  z-index: -1;
}
.hvala h1 {
  padding: 20px;
  font-size: 40px;
}
.btn-povratak {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 15px 25px;
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-size: 12px;
}

.btn-povratak:hover {
  opacity: 0.9;
}

/* ------MEDIA SIZING------ */
/*---------TABLET---------*/
@media (max-width: 768px) {
  nav a:first-child {
    flex: 0;
  }
  nav {
    position: sticky;
    top: 0;
    z-index: 10000;
  }
  nav img {
    width: 60px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .text-box h1 {
    font-size: 35px;
  }
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .social-icons {
    display: none;
  }
  /*
  .nav-links ul li {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    background: #212121;
    height: 40vh;
    width: 150px;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    border-radius: 15px;
    margin: 20px;
  }*/
  nav .fa {
    display: block;
    color: white;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }

  .agrosol-text h1 {
    font-size: 30px;
  }
  .agrosol-info-bottom {
    flex-direction: column;
  }
  .agrosol-fifth-content {
    flex-direction: column;
  }
  .agrosol-content {
    flex-direction: column;
    text-align: center;
  }
  .agrosol-third-section-top {
    padding: 0px 40px;
  }
  .agrosol-third-section-bottom {
    padding: 0px 40px;
  }
  .agrosol-text h1 {
    font-size: 30px;
  }

  .primjena {
    padding: 30px 15px;
  }
  .primjena h2 {
    font-size: 1.6em;
  }
  .primjena h3 {
    font-size: 1.2em;
  }
  .container {
    padding: 0px 50px;
  }
  .agrosol-content {
    flex-direction: column;
    text-align: center;
  }
  .agrosol-btn {
    margin-bottom: 40px;
  }
  .agrosol-image {
    margin-top: 40px;
  }
  .agrosol-text h1 {
    font-size: 30px;
  }

  .agrosol-content {
    flex-direction: column;
    text-align: left;
  }

  .agrosol-text h1 {
    font-size: 30px;
  }
  .list-image-wrapper {
    flex-direction: column;
  }

  .images img {
    max-width: 80%;
    margin: 0 auto;
  }

  .agrosol-video-section {
    padding: 40px;
  }

  .agrosol-video {
    max-width: 100%;
  }

  .agrosol-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
  }
  /*-----NOVAFERM------*/

  .novaferm-content img {
    margin-top: 50px;
    margin-bottom: 25px;
  }
  .novaferm-multi-about {
    padding: 80px;
  }
  .novaferm-multi-header {
    min-height: 60vh;
  }

  .novaferm-content {
    flex-direction: column;
    gap: 30px;
    width: 90%;
  }

  .novaferm-image img {
    max-width: 320px;
  }

  .novaferm-text h1 {
    font-size: 32px;
  }

  /* ABOUT */
  .novaferm-multi-about {
    padding: 40px 70px;
  }

  .novaferm-multi-about-content {
    flex-direction: column;
  }

  .novaferm-multi-about-content img {
    height: auto;
    max-width: 100%;
  }

  /* PAKIRANJE */
  .novaferm-pakiranje-section {
    padding: 40px 20px;
  }

  .novaferm-pakiranje-content {
    flex-direction: column;
    gap: 30px;
  }

  .novaferm-pakiranje-image img {
    max-width: 80%;
  }

  /* PREDNOST */
  .prednost {
    padding: 30px 60px;
  }
  .prednost-image img {
    max-width: 80%;
  }
  .novaferm-about-img-wrapper img {
    max-width: 80%;
  }
  /*-------POCEO-------*/

  .contact-banner h2 {
    font-size: 35px;
  }
  .brands-track {
    gap: 60px;
  }

  .brands-track img {
    height: 70px;
  }
  .third-section {
    background-size: 150%;
    background-position: center -30%;
    background-repeat: no-repeat;
  }
  .about {
    padding: 50px 20px;
  }

  .about-container {
    flex-direction: column-reverse;
  }

  .about-image {
    height: 400px;
    width: 100%;
  }
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0;
    padding: 0 10px;
  }

  /*--------AMINO---------*/
  .amino-top-pakiranje-content {
    flex-direction: column;
  }
  .complex-wrapper {
    flex-direction: column;
    padding: 0px 40px;
  }
  .content-wrapper {
    flex-direction: column;
  }
  .complex-images {
    max-width: 80%;
    margin: 0 auto;
  }
  .full-images {
    padding: 0px 40px;
  }
  .amino-top-image img {
    margin-top: 40px;
  }
  .amino-top-video-section {
    padding: 50px;
  }
  .amino-top-video {
    max-width: 100%;
  }
  .amino-top-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
  }
  /*-----EXTREMO------*/
  .extremo-forte-content {
    flex-direction: column;
  }

  .extremo-forte-pakiranje-content {
    flex-direction: column;
  }
  .center-text {
    margin: 0px 50px;
  }

  .list-image-wrapper {
    margin: 0px 70px;
  }
  .section-content {
    margin: 0px 70px;
  }
  .forte-section-container {
    flex-direction: column;
    margin: 0px 50px;
  }
  .forte-section-right img {
    margin: 0 auto;
  }
  .forte-section-right ol {
    margin: 0 auto;
    text-align: left;
    display: table;
  }
  .extremo-primjena-block {
    margin: 0px 30px;
  }
}
/*---------MOBILE---------*/
@media (max-width: 480px) {
  nav a:first-child img {
    width: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .text-box h1 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  .text-box p {
    font-size: 12px;
  }
  .hero-btn {
    padding: 10px 45px;
    font-size: 14px;
  }
  .third-section {
    background-size: 200%;
    background-position: center -50%;
    background-repeat: no-repeat;
  }

  .third-section h2 {
    font-size: 20px;
  }
  .about-text {
    margin: 20px;
  }
  .partners {
    padding: 40px 20px;
  }
  .partners-logos {
    gap: 20px;
  }

  .partners-logos img {
    height: 60px;
  }
  .contact {
    padding: 30px 15px;
  }

  .contact-top h2 {
    font-size: 22px;
  }

  .contact-top a {
    word-break: break-all;
  }
  .contact-form {
    width: 100%;
    align-items: center;
  }
  .contact-form form {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }
  .about-banner h2 {
    font-size: 27px;
  }
  .contact-banner h2 {
    font-size: 28px;
  }
  .contact-banner p {
    font-size: 16px;
  }
  /* AGROSOL */
  .agrosol-liquid-header {
    min-height: 60vh;
  }

  .agrosol-content {
    flex-direction: column;
    gap: 20px;
    width: 90%;
  }

  .agrosol-image img {
    max-width: 220px;
    margin-bottom: 25px;
  }

  .agrosol-text h1 {
    font-size: 28px;
  }

  /* INFO */
  .agrosol-info {
    padding: 40px 15px;
  }
  .agrosol-info-text {
    padding: 0px 10px;
  }
  .agrosol-info-bottom {
    flex-direction: column;
    padding: 0;
  }

  .agrosol-info-image img {
    max-width: 85%;
  }

  /* THIRD */
  .agrosol-third-section {
    padding: 40px 15px;
  }

  .agrosol-third-section-images {
    flex-direction: column;
  }

  .agrosol-third-section-images img {
    max-width: 100%;
  }

  /* FOURTH */
  .agrosol-fourth-section {
    padding: 40px 15px;
  }

  .agrosol-fourth-content {
    flex-direction: column;
    gap: 20px;
    padding: 0px 10px;
  }

  /* FIFTH */
  .agrosol-fifth-section {
    padding: 40px 15px;
  }

  .agrosol-fifth-content {
    flex-direction: column;
    gap: 20px;
  }

  .agrosol-fifth-image img {
    max-width: 100%;
  }

  /* SLIDER */
  .agrosol-slider-section {
    padding: 40px 15px;
  }

  .agrosol-slide {
    height: 250px;
  }

  /* VIDEO */
  .agrosol-video-section {
    padding: 20px 15px;
  }

  .agrosol-video {
    max-width: 100%;
  }

  .agrosol-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
  }
  /* NOVAFERM */
  .novaferm-multi-header {
    min-height: 60vh;
  }

  .novaferm-content {
    flex-direction: column;
    gap: 20px;
    width: 90%;
  }

  .novaferm-image img {
    max-width: 220px;
  }

  .novaferm-text h1 {
    font-size: 28px;
  }

  /* ABOUT */
  .novaferm-multi-about {
    padding: 40px 15px;
  }
  .novaferm-multi-about h2 {
    text-align: left;
  }
  .novaferm-multi-about-content {
    flex-direction: column;
    margin: 0px 25px;
  }

  .novaferm-about-img-wrapper img {
    max-width: 100%;
  }

  /* PRIMJENA */
  .primjena h2 {
    font-size: 1.5em;
  }
  .container {
    padding: 10px;
  }
  .primjena h3 {
    font-size: 1.1em;
  }

  /* PREDNOST */
  .prednost {
    padding: 30px 20px;
  }

  .prednost-image img {
    max-width: 100%;
  }

  /* PAKIRANJE */
  .novaferm-pakiranje-section {
    padding: 40px 15px;
  }

  .novaferm-pakiranje-content {
    flex-direction: column;
    gap: 20px;
  }

  .novaferm-pakiranje-image img {
    max-width: 100%;
  }
  /* AMINO */
  .amino-top-header {
    min-height: 60vh;
  }

  .amino-top-content {
    flex-direction: column;
    gap: 20px;
    width: 90%;
  }

  .amino-top-image img {
    max-width: 220px;
    margin-bottom: 20px;
  }

  .amino-top-text h1 {
    font-size: 28px;
  }

  /* PAKIRANJE */
  .amino-top-pakiranje-section {
    padding: 40px 15px;
  }

  .amino-top-pakiranje-content {
    flex-direction: column;
    gap: 20px;
  }

  .amino-top-pakiranje-image img {
    max-width: 100%;
  }

  /* ABOUT */
  .complex-layout {
    padding: 30px 15px;
  }

  .section-title {
    margin-bottom: 40px;
    text-align: left;
    padding: 0px 10px;
  }

  .complex-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0px 10px;
  }

  .full-images {
    flex-direction: column;
    gap: 20px;
  }

  .full-images img {
    width: 100%;
  }

  /* VIDEO */
  .amino-top-video-section {
    padding: 20px 15px;
  }

  .amino-top-video {
    max-width: 100%;
  }

  .amino-top-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
  }

  /* EXTREMO */
  .extremo-forte-header {
    min-height: 60vh;
  }

  .extremo-forte-content {
    flex-direction: column;
    gap: 20px;
    width: 90%;
  }

  .extremo-forte-image img {
    max-width: 240px;
  }

  .extremo-forte-text h1 {
    font-size: 28px;
  }

  /* CERTIFICAT */
  .center-text {
    padding: 40px 15px;
  }

  .center-text p {
    font-size: 17px;
  }

  /* ABOUT */
  .list-image {
    padding: 40px 0px;
  }

  .list-image-wrapper {
    flex-direction: column;
  }

  .list-image img {
    max-width: 100%;
  }

  /* REZULTATI */
  .section-layout {
    padding: 40px 0;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .images {
    align-items: center;
    width: 100%;
  }

  .images img {
    max-width: 100%;
  }

  /* FORTE SECTION */
  .forte-section-container {
    flex-direction: column;
    gap: 20px;
  }

  .forte-section-right {
    align-items: center;
    width: 100%;
  }

  .forte-section-right img {
    max-width: 80%;
  }

  .forte-section-right ol {
    display: table;
    margin: 0 auto;
  }

  /* PRIMJENA */
  .extremo-primjena-container {
    padding: 20px 15px;
  }

  .extremo-primjena-center {
    padding: 20px 15px;
  }

  /* PAKIRANJE */
  .extremo-forte-pakiranje-section {
    padding: 40px 15px;
  }
  .extremo-forte-pakiranje-text h2 {
    padding: 0px 20px;
  }
  .extremo-forte-pakiranje-content {
    flex-direction: column;
    gap: 20px;
    padding: 0px 10px;
  }

  .extremo-forte-pakiranje-image img {
    width: 100%;
    max-width: 80%;
  }
  .hvala h1 {
    font-size: 30px;
  }
}
