@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

*,
*:before,
*:after {
  box-sizing: border-box;
}

.disabled {
  text-decoration: line-through;
  color: #999;
}

body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; /* Reduce padding on smaller screens */
  width: 100%; /* Ensure container takes full width */
  box-sizing: border-box; /* Include padding in width calculation */
}

header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  height: 80px;
}

.logo {
  flex: 1;
}

.logo img {
  height: 64px; /* Adjust this value to match your logo's desired height */
  width: auto;
}

nav {
  flex: 2;
  display: flex;
  justify-content: center;
}

.social-icons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.social-icon img {
  width: 32px;
  height: 32px;
  transition: filter 0.3s ease;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%)
    contrast(100%);
}

.social-icon:hover img[src*="facebook"] {
  filter: invert(29%) sepia(94%) saturate(2290%) hue-rotate(208deg)
    brightness(97%) contrast(101%);
}

.social-icon:hover img[src*="instagram"] {
  filter: invert(18%) sepia(75%) saturate(6689%) hue-rotate(322deg)
    brightness(100%) contrast(101%);
}

nav ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  font-weight: 500;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

nav ul li a img {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

nav ul li a:hover {
  color: #2541b2;
}

.dropdown {
  position: relative;
}

.dropdown > a {
  position: relative;
}

.dropdown:hover > a,
.dropdown:focus-within > a {
  color: #2541b2;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  z-index: 1;
  padding: 0.5rem 0;
}

.dropdown-menu::before,
.dropdown-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-menu::before {
  top: -11px;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid #eee;
}

.dropdown-menu::after {
  top: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1rem;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  padding: 0.75rem 1rem;
  line-height: 1.5;
  display: block;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: transparent;
  color: #2541b2;
}

.hero {
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("hero.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #2541b2;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #ffffff;
  color: #2541b2;
}

.services {
  background-color: #eef1e3;
}

.services,
.clients {
  padding: 4rem 0;
}

.services-title,
.clients-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 4rem;
}

.services-grid,
.clients-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-row,
.clients-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.service-box,
.client-box {
  flex-basis: calc(33.333% - 1.33rem);
  aspect-ratio: 1 / 1;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #ffffff;
}

.service-box::before,
.client-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.service-box h3,
.client-box h3 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.service-box:hover::before,
.client-box:hover::before {
  background-color: rgba(0, 0, 0, 0.7);
}

.service-button,
.client-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #2541b2;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 1;
}

.service-box:hover,
.client-box:hover {
  background-color: #e0e0e0;
}

.service-box:hover h3,
.client-box:hover h3 {
  transform: translateY(-30px);
}

.service-box:hover .service-button,
.client-box:hover .client-button {
  opacity: 1;
  transform: translate(-50%, 10px);
}

.schedule-a-meeting {
  background-color: #2541b2;
  color: #ffffff;
  padding: 2rem 0;
}

.schedule-a-meeting .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.schedule-a-meeting h3 {
  font-size: 1.5rem;
  margin: 0;
}

.schedule-a-meeting .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.schedule-a-meeting .cta-button:hover {
  background-color: #fff;
  color: #2541b2;
}

/* Footer Styles */
.footer {
  background-color: #2541b2;
  padding: 4rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  flex: 1;
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #a4c2c4;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a,
.footer-column ul li,
.footer-column p,
.footer-column a {
  color: #a4c2c4;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-column ul li a:hover,
.footer-column a:hover {
  color: #ffffff;
}

.footer-column:last-child p {
  margin-bottom: 0.5rem;
}

.footer .social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.footer .social-icon {
  color: #a4c2c4;
  transition: color 0.3s ease;
}

.footer .social-icon img {
  width: 32px;
  height: 32px;
  filter: invert(80%) sepia(11%) saturate(368%) hue-rotate(135deg)
    brightness(86%) contrast(85%);
  transition: filter 0.3s ease;
}

.footer .social-icon:hover img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%)
    contrast(100%);
}

.client-type-info {
  padding: 2rem 0 6rem 0;
}

.client-type-info-content {
  display: flex;
  gap: 2rem; /* Remove gap to ensure exact 50% width */
}

.client-type-image,
.client-type-text {
  flex: 0 0 50%; /* Flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
  width: 50%;
  box-sizing: border-box; /* Include padding in the width calculation */
}

.client-type-image {
  background-image: url("misc1.png"); /* Add your image path here */
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.client-type-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #0e292a;
  color: #ffffff;
  padding: 3rem;
}

.client-type-text h2 {
  font-size: 2.5rem; /* Increased from 2rem */
  font-weight: 700;
  margin-bottom: 1rem;
}

.client-type-text .divider {
  width: 50px;
  height: 3px;
  background-color: #fff;
  margin-bottom: 1.5rem;
}

.client-type-text p {
  font-size: 1.25rem; /* Increased from 1rem */
  font-weight: 300; /* Made thinner */
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.client-type-text p:last-child {
  margin-bottom: 0;
}

.restorani-page .schedule-a-meeting,
.fast-food-page .schedule-a-meeting,
.pubovi-page .schedule-a-meeting,
.zdravlje-page .schedule-a-meeting,
.rekreacijsko-ugostiteljstvo-page .schedule-a-meeting,
.novi-koncepti-page .schedule-a-meeting,
.razvoj-jelovnika-page .schedule-a-meeting,
.operativne-revizije-page .schedule-a-meeting,
.poslovno-savjetovanje-page .schedule-a-meeting,
.kontakt-page .schedule-a-meeting,
.o-nama-page .schedule-a-meeting,
.mobilni-objekti-page .schedule-a-meeting,
.optimizacija-troskova-page .schedule-a-meeting,
.blog-post-page .schedule-a-meeting {
  background-color: #bfd7ff;
  color: #2541b2;
}

.optimizacija-troskova-page .concept-text p + p {
  margin-top: 1rem;
}

.optimizacija-troskova-page .container-concept-grid {
  background-color: #fff;
}

.optimizacija-troskova-page .concept-box.text-box {
  background-color: #eef1e3;
}

/* Styles specific to fast-food.html */
.fast-food-page .client-type-text,
.fast-food-page .client-type-text p {
  background-color: #b74701;
  color: #fff;
  font-weight: 300;
}

.fast-food-page .client-type-image {
  background-image: url("client6.jpeg");
  background-position: 70% center;
}

/* If you want to ensure the h2 and divider keep their original styling: */
.fast-food-page .client-type-text h2,
.fast-food-page .client-type-text .divider {
  color: #fff; /* or whatever color you want for these elements */
}

.pubovi-page .client-type-text,
.pubovi-page .client-type-text p {
  background-color: #2f0e07;
  color: #ffffff;
}

.pubovi-page .client-type-image {
  background-image: url("misc2.png"); /* Replace with your actual image path */
}

.zdravlje-page .client-type-text h2,
.zdravlje-page .client-type-text .divider {
  color: #fff;
}

.zdravlje-page .client-type-text,
.zdravlje-page .client-type-text p {
  background-color: #488844;
  color: #fff;
  font-weight: 300;
}

.zdravlje-page .client-type-image {
  background-image: url("misc3.png"); /* Replace with your actual image path */
}

.zdravlje-page .divider {
  background-color: #fff;
}

.rekreacijsko-ugostiteljstvo-page .client-type-text,
.rekreacijsko-ugostiteljstvo-page .client-type-text p {
  background-color: #508891;
  color: #ffffff;
}

.rekreacijsko-ugostiteljstvo-page .client-type-image {
  background-image: url("misc4.jpg"); /* Replace with your actual image path */
  background-position: 35% center;
}

.rekreacijsko-ugostiteljstvo-page .divider {
  background-color: #fff;
}

.mobilni-objekti-page .client-type-image {
  background-image: url("client7.jpeg");
}

.mobilni-objekti-page .client-type-text {
  background-color: #011638;
  color: #ffffff;
}

.section-intro {
  text-align: center;
  padding: 4rem 0;
}

.section-intro h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

.section-intro p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

.concept-creation {
  background-color: #eef1e3;
}

.concept-creation-content {
  display: flex;
  gap: 2rem;
  padding: 4rem 0;
}

.concept-text,
.concept-image {
  flex: 1;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.concept-text h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

.optimizacija-troskova-page .concept-text {
  flex: 2;
}

.concept-text p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  color: 000;
}

.concept-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  align-items: center;
}

.challenges-section {
  padding-bottom: 4rem;
}

.section-intro.section-intro-2 h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0;
  color: #333;
}

.challenges-grid {
  display: flex;
  gap: 1rem;
}

.challenge-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.challenge-box {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  flex: 1;
}

.challenge-icon {
  flex-shrink: 0;
  margin-right: 1rem;
}

.challenge-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.challenge-content {
  flex-grow: 1;
}

.challenge-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

.challenge-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
}

.container-concept-grid {
  padding: 6rem;
  background-color: #eef1e3;
}

.concept-row {
  display: flex;
}

.concept-row:last-child {
  margin-bottom: 0;
}

.concept-box {
  flex: 1;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.concept-box.text-box {
  background-color: #fff;
}

.concept-box.image-box {
  overflow: hidden;
  padding: 0;
}

.concept-box.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.concept-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
}

.text-box-wrapper {
  padding: 2rem;
}

.text-box-wrapper h3 {
  font-size: 1.25rem;
}

.blog-post-page {
  background-color: #eef1e3;
}

.container.content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.blog-post-page .section-intro {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 0;
}

.blog-post-brief {
  background-color: #ffffff;
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.blog-post-brief + .blog-post-brief {
  margin-top: 4rem;
}

.blog-post-brief-image {
  flex: 0 0 40%;
  height: 300px;
}

.blog-post-brief-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-brief-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-post-brief-content a:link,
.blog-post-brief-content a:visited {
  text-decoration: none;
  color: #2541b2;
}

.blog-post-brief-content a:hover,
.blog-post-brief-content a:active {
  color: #57b288;
  transition: color 0.2s ease;
}

.blog-post-brief-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.blog-post-brief-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #454545;
}

.read-more {
  margin-top: 1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .clients-grid .clients-row,
  .services-grid .services-row {
    flex-direction: column;
  }

  .schedule-a-meeting .container {
    flex-direction: column;
    text-align: center;
  }

  .schedule-a-meeting h3 {
    line-height: 1.5;
  }

  .client-type-info-content {
    flex-direction: column;
  }

  .client-type-info-content .client-type-image,
  .client-type-info-content .client-type-text {
    width: 100%;
  }

  .concept-creation-content {
    flex-direction: column;
  }

  .concept-creation-content .concept-text,
  .concept-creation-content .concept-image {
    width: 100%;
  }

  .container-concept-grid {
    padding: 2rem;
  }

  .challenges-grid {
    flex-direction: column;
  }

  .concept-row {
    flex-direction: column;
  }

  .concept-row:last-child {
    flex-direction: column-reverse;
  }

  .footer-content {
    flex-direction: column;
  }

  .blog-post-brief {
    flex-direction: column;
  }

  .blog-post-brief-image {
    flex: 0 0 auto;
    width: 100%;
  }

  .blog-post-brief-content {
    flex: 1;
  }

  .blog-post-page .section-intro {
    padding-top: 2rem;
    line-height: 1.5;
  }

  .blog-post-page .container.content {
    padding-top: 2rem;
  }
}

/* Add these new styles at the end of your existing CSS */

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: 0.4s;
}

@media (max-width: 768px) {
  header > .reset-header-container {
    padding: 0;
  }

  header .header-container {
    padding: 0 2rem;
  }

  header .social-icons.active {
    flex-direction: row;
    margin-top: 7rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  nav,
  .social-icons {
    display: none;
  }

  nav.active,
  .social-icons.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem;
    box-shadow: none;
  }

  nav.active {
    z-index: 100;
  }

  nav.active ul {
    flex-direction: column;
    align-items: center;
  }

  nav.active ul li {
    margin: 0.5rem 0;
  }

  .social-icons.active {
    z-index: 99;
    top: calc(80px + 100%);
    justify-content: center;
    padding-top: 1rem;
  }

  .header-container {
    position: relative;
  }
}

.poslovno-savjetovanje-grid,
.kontakt-grid {
  background-color: #eef1e3;
  padding: 4rem 0;
}

.poslovno-savjetovanje-content,
.kontakt-content {
  display: flex;
  gap: 2rem;
}

.poslovno-savjetovanje-box,
.kontakt-box {
  flex: 1;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kontakt-box {
  background-color: inherit;
  box-shadow: none;
}

.poslovno-savjetovanje-box h3,
.kontakt-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.poslovno-savjetovanje-box p,
.kontakt-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}

.kontakt-box p {
  font-size: 1.1rem;
  color: #333;
}

.poslovno-savjetovanje-box p:last-child,
.kontakt-box p:last-child {
  margin-bottom: 0;
}

.kontakt-page .section-intro {
  background-color: #eef1e3;
}

.kontakt-page .section-intro h2 {
  margin-bottom: 0;
}

.kontakt-page .kontakt-grid {
  padding-top: 0;
}

.kontakt-page .kontakt-box .bold {
  font-weight: 700;
}

.kontakt-page .kontakt-box .social-icons {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .poslovno-savjetovanje-content,
  .kontakt-content {
    flex-direction: column;
  }
}

/* Contact Form Styles */
#contact-form .form-group {
  margin-bottom: 2rem;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #eef1e3;
  border: 1px solid #333;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: #666;
  font-size: 1.1rem;
}

#contact-form .submit-button {
  display: inline-block;
  border: none;
  padding: 1rem 2rem;
  background-color: #2541b2;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #2541b2;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

#contact-form .submit-button:hover {
  background-color: #fff;
  color: #2541b2;
  border: 1px solid #2541b2;
  cursor: pointer;
}

.o-nama-container {
  background-color: #eef1e3;
  display: flex;
  justify-content: center;
}

.o-nama-content {
  max-width: 800px; /* Adjust the width as needed */
  text-align: left;
  padding: 4rem 0;
}

.o-nama-content p {
  font-size: 1rem;
  line-height: 1.5;
}

.o-nama-content p + p {
  margin-top: 1.5rem;
}

.o-nama-content .divider {
  width: 100%;
  height: 1px;
  background-color: #57b288;
  margin: 1.5rem 0;
}

.o-nama-page .team {
  padding-bottom: 4rem;
}

.o-nama-page .team .portrait-image {
  width: 120px;
  display: block;
  margin: 0 auto;
  border: 1px solid #333;
}

.o-nama-page .team p {
  font-size: 0.8rem;
  line-height: 1.5;
  padding-top: 0.5rem;
  display: block;
  width: 120px;
  margin: 0 auto;
}

.o-nama-page .team p span {
  font-weight: 700;
}

@media (max-width: 768px) {
  .o-nama-page .section-intro {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .o-nama-content {
    padding: 1.5rem; /* Add padding for mobile devices */
  }
}

.copyright {
  padding-bottom: 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  background-color: #2541b2;
  color: #677fe0;
}

footer.footer .footer-content a {
  text-decoration: underline;
}

.contact-link {
  color: #333;
}

.contact-response,
.contact-response-error {
  padding: 6rem 0;
}

.contact-response-error h2,
.contact-response-error p {
  color: crimson;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .client-type-info {
    padding: 2rem 0;
  }

  .client-type-text {
    padding: 1.5rem;
  }

  .client-type-text h2 {
    font-size: 2rem;
    line-height: 1.5;
  }

  .client-type-text p {
    font-size: 1rem;
  }

  section.section-intro {
    padding: 2rem;
  }

  section.section-intro h2,
  section.section-intro.section-intro-2 h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  section.section-intro p {
    font-size: 1rem;
  }

  .challenges-section {
    padding-bottom: 2rem;
  }

  .challenge-box {
    padding: 1rem;
  }

  .challenge-icon {
    margin-top: 0.3rem;
  }

  .challenge-content h3,
  .poslovno-savjetovanje-box h3 {
    line-height: 1.5;
  }

  .o-nama-page .team {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }

  .poslovno-savjetovanje-grid {
    padding: 2rem 0;
  }

  .kontakt-page .kontakt-grid {
    padding: 0;
  }

  .kontakt-content {
    gap: 0;
  }

  .kontakt-box {
    border-bottom: 1px solid #57b288;
    border-radius: 0;
    padding: 2rem 0;
  }

  .kontakt-box:first-child {
    padding-top: 0;
  }

  .kontakt-box:last-child {
    border-bottom: none;
  }
}
