* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #464646;
  background-color: #fff;
  line-height: 1.6;
}
body.mobile-nav-active {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #034281;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
header .logo {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  z-index: 1001;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}
header .logo__name {
  display: block;
}
header .logo__tagline {
  display: block;
  font-size: 0.65em;
  font-weight: normal;
}
header .logo__icon {
  display: block;
  width: 2.5em;
  height: auto;
}
header #main-nav {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
header #main-nav li {
  margin-left: 20px;
}
header #main-nav li:first-child {
  margin-left: 0;
}
header #main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  padding: 5px 0;
  display: block;
  transition: opacity 0.3s ease;
}
header #main-nav a:hover {
  opacity: 0.8;
}
header .hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
header .hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

#pressure-molds,
#thermoforming-parts,
#mold-regeneration,
#machine-parts-design,
#machine-parts-design,
#cnc-milling,
#cnc-turning,
#laser-welding,
#edm-machining,
#grinding-services {
  scroll-margin-top: 60px;
}

.hero {
  background: #02013a url("../img/hero-img.webp") center 90%/cover no-repeat;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 40px 0;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-header {
  background-color: #f0f0f0;
  text-align: center;
  padding: 40px 0;
}
.page-header h1 {
  font-size: 2.2rem;
  color: #034281;
  margin-bottom: 0.5em;
}
.page-header p {
  font-size: 1.1rem;
  color: #2d2d2d;
  max-width: 700px;
  margin: 0 auto;
}

.intro {
  text-align: center;
  padding: 40px 0;
}
.intro h2 {
  font-size: 1.6rem;
  color: #034281;
  margin-bottom: 22.5px;
}
.intro p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.services-overview {
  padding: 40px 0;
}
.services-overview h2 {
  text-align: center;
  color: #034281;
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.services-overview .cards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.services-overview .service-card {
  flex-basis: calc(33.333% - 20px);
  flex-grow: 1;
  min-width: 250px;
  text-align: center;
  padding: 25px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(2, 1, 58, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-overview .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(2, 1, 58, 0.15);
}
.services-overview .service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.services-overview .service-card h3 {
  font-size: 1.2rem;
  margin: 15px 0;
  color: #034281;
}
.services-overview .service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2d2d2d;
}
.services-overview .service-card .button {
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  text-decoration: none;
  padding: 5px 15px;
  margin-top: 10px;
  border-radius: 3px;
  font-weight: 300;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.services-overview .service-card .button:hover {
  background-color: #004d99;
  transform: scale(1.05);
}

.cta {
  text-align: center;
  background-color: #f0f0f0;
  padding: 40px 0;
  margin-top: 22.5px;
}
.cta h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #034281;
}
.cta p {
  font-size: 1rem;
  margin-bottom: 22.5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta .button {
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 3px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta .button:hover {
  background-color: #004d99;
  transform: scale(1.05);
}

.service-section > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  padding-top: 40px 0;
  padding-bottom: 40px 0;
  gap: 40px;
}
.service-section:nth-child(even) > .container {
  flex-direction: row-reverse;
}
.service-section .service-image {
  flex: 1 1 40%;
  max-width: 350px;
}
.service-section .service-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(2, 1, 58, 0.15);
}
.service-section .service-text {
  flex: 1 1 60%;
}
.service-section .service-text h2 {
  font-size: 1.4rem;
  color: #034281;
  margin-bottom: 15px;
}
.service-section .service-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.service-section .service-text p:last-child {
  margin-bottom: 0;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 40px 0;
  padding-bottom: 40px 0;
  gap: 40px;
}
.contact-section .contact-form,
.contact-section .contact-info {
  flex: 1 1 400px;
  padding: 25px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(2, 1, 58, 0.08);
}
.contact-section h2 {
  font-size: 1.4rem;
  margin-bottom: 22.5px;
  color: #034281;
}
.contact-section .contact-form {
  display: none;
}
.contact-section .contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-form label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #131313;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
}
.contact-section .contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form button {
  align-self: flex-start;
  width: auto;
  padding: 10px 25px;
  background-color: #0066cc;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.contact-section .contact-form button:hover {
  background-color: #004d99;
  transform: scale(1.03);
}
.contact-section .contact-info p {
  margin-bottom: 22.5px;
  font-size: 1rem;
  line-height: 1.7;
}
.contact-section .contact-info p strong {
  color: #034281;
  margin-right: 5px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(3, 66, 129, 0.95);
  color: #f0f0f0;
  padding: 15px 0 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  flex-grow: 1;
}
.cookie-banner p a {
  color: #fff;
  text-decoration: underline;
}
.cookie-banner p a:hover {
  color: #e6e6e6;
}
.cookie-banner__button {
  background-color: #0066cc;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.cookie-banner__button:hover {
  background-color: #004d99;
}

@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner p {
    margin-bottom: 15px;
  }
}
footer {
  background-color: #02013a;
  color: #f0f0f0;
  padding: 40px 0/1.5 0;
  margin-top: 40px 0;
}
footer .developer-name {
  background-color: white;
  text-align: center;
}
footer .developer-name p {
  margin: 0;
  color: #727272;
  font-size: 10px;
}
footer .developer-name img {
  margin-top: 5px;
  max-width: 80px;
}
footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
footer p {
  margin: 8px 0;
  font-size: 0.9rem;
  color: #cacaca;
}
footer .footer-contact {
  font-size: 0.85rem;
  opacity: 0.8;
}
footer a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease, -webkit-text-decoration 0.3s ease;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  transition: color 0.3s ease, text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.privacy-policy-content {
  margin-top: 50px;
}
.privacy-policy-content p,
.privacy-policy-content li {
  font-size: 0.8em;
}
.privacy-policy-content h2 {
  color: #034281;
  font-size: 1em;
  margin: 5px 0;
}

.offer-item-section {
  padding: 3rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.offer-item-section > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}
.offer-item-section:last-child {
  border-bottom: none;
}
.offer-item-section .offer-image {
  flex: 1 1 320px;
  max-width: 100%;
}
.offer-item-section .offer-image img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto 20px auto;
}
.offer-item-section .offer-text {
  flex: 2 1 450px;
  margin: 0 20px;
}
.offer-item-section .offer-text h2 {
  font-size: 2.2rem;
  color: #034281;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.offer-item-section .offer-text p,
.offer-item-section .offer-text ul {
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1rem;
}
.offer-item-section .offer-text ul {
  list-style: disc;
  padding-left: 25px;
}
.offer-item-section .offer-text ul li {
  margin-bottom: 0.5rem;
}
.offer-item-section > .container:nth-child(odd) .offer-image {
  order: 0;
}
.offer-item-section > .container:nth-child(odd) .offer-text {
  order: 0;
}
.offer-item-section:nth-child(even) > .container .offer-image {
  order: 2;
}
.offer-item-section:nth-child(even) > .container .offer-text {
  order: 1;
}
@media (max-width: 992px) {
  .offer-item-section {
    padding: 2.5rem 0;
  }
  .offer-item-section > .container {
    gap: 2rem;
  }
  .offer-item-section .offer-text h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .offer-item-section > .container {
    text-align: center;
  }
  .offer-item-section > .container .offer-image,
  .offer-item-section > .container .offer-text {
    flex-basis: 100%;
  }
  .offer-item-section > .container .offer-image {
    order: 1 !important;
    margin-bottom: 1.5rem;
  }
  .offer-item-section > .container .offer-image img {
    max-width: 300px;
  }
  .offer-item-section > .container .offer-text {
    order: 2 !important;
    text-align: left;
  }
  .offer-item-section > .container .offer-text h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  .offer-item-section > .container .offer-text ul {
    padding-left: 20px;
  }
  .offer-item-section > .container:nth-child(even) .offer-image {
    order: 1 !important;
  }
  .offer-item-section > .container:nth-child(even) .offer-text {
    order: 2 !important;
  }
}

@media (max-width: 768px) {
  header #main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #023568;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(2, 1, 58, 0.3);
    z-index: 1000;
    border-top: 1px solid #045cb3;
  }
  header #main-nav li {
    margin: 0;
    width: 100%;
  }
  header #main-nav a {
    color: #fff;
    padding: 15px 0 20px;
    text-align: left;
    border-bottom: 1px solid #044f9a;
    font-weight: normal;
  }
  header #main-nav a:hover {
    background-color: #045cb3;
    text-decoration: none;
    opacity: 1;
  }
  header #main-nav li:last-child a {
    border-bottom: none;
  }
  header .hamburger-menu {
    display: block;
  }
  body.mobile-nav-active header #main-nav {
    display: flex;
  }
  body.mobile-nav-active header .hamburger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  body.mobile-nav-active header .hamburger-menu span:nth-child(2) {
    opacity: 0;
  }
  body.mobile-nav-active header .hamburger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .hero {
    min-height: 250px;
    padding: 40px 0/1.5;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .page-header {
    padding: 40px 0/1.5;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .page-header p {
    font-size: 1rem;
  }
  .services-overview .service-card {
    flex-basis: calc(100% - 20px);
    min-width: unset;
    margin: 0;
  }
  .services-overview .service-card:hover {
    transform: none;
    box-shadow: 0 2px 5px rgba(2, 1, 58, 0.1);
  }
  .service-section > .container {
    flex-direction: column !important;
    text-align: center;
    padding-top: 40px 0/1.5;
    padding-bottom: 40px 0/1.5;
    gap: 20px;
  }
  .service-section .service-image {
    margin-bottom: 22.5px;
    flex-basis: auto;
    max-width: 280px;
  }
  .service-section .service-text {
    flex-basis: auto;
  }
  .contact-section .container {
    flex-direction: column;
    padding-top: 40px 0/1.5;
    padding-bottom: 40px 0/1.5;
    gap: 20px;
  }
  .contact-section .contact-form,
  .contact-section .contact-info {
    flex-basis: 100%;
  }
  .contact-section .contact-form button {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
  footer {
    padding: 40px 0/2 0;
  }
  footer .footer-contact {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}/*# sourceMappingURL=main.css.map */