:root {
  /* --accent: #2b9348;
  --accent-dark: #207034;
  --muted: #6b7280;
  --bg: #f7f8fb;
  --card: #ffffff;
  --radius: 12px;
  --maxw: 1100px;
  --shadow: 0 6px 20px rgba(16, 24, 40, 0.1);
  --shadow-hover: 0 10px 25px rgba(16, 24, 40, 0.15);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial; */

  --header-height: 75px;
  --content-width: 1020px;
  --white: #fff;
  --black: #000;
  --dark-blue: #18181f;
  --accent: #d0021c;
  --bg-color: #ebeeee;

  --brown: #7b3f00;
  --green: #355e3b;
  --blue: #0047ab;
  --grey: #555;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@-webkit-keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
    transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px);
    transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.tracking-in-expand-fwd {
  -webkit-animation: tracking-in-expand-fwd 0.8s
    cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.61, 0.355, 1)
    both;
  margin: 20px 0;
}

.wave-text {
  margin: 20px 0;
}
.wave-text span {
  display: inline-block;
  animation: wave 1.6s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
  animation-delay: 0s;
}
.wave-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.wave-text span:nth-child(3) {
  animation-delay: 0.4s;
}
.wave-text span:nth-child(4) {
  animation-delay: 0.6s;
}
.wave-text span:nth-child(5) {
  animation-delay: 0.8s;
}
.wave-text span:nth-child(6) {
  animation-delay: 1s;
}
.wave-text span:nth-child(7) {
  animation-delay: 1.2s;
}
.wave-text span:nth-child(8) {
  animation-delay: 1.4s;
}
.wave-text span:nth-child(9) {
  animation-delay: 1.6s;
}
.wave-text span:nth-child(10) {
  animation-delay: 1.8s;
}
.wave-text span:nth-child(11) {
  animation-delay: 2s;
}
.wave-text span:nth-child(12) {
  animation-delay: 2.2s;
}
.wave-text span:nth-child(13) {
  animation-delay: 2.4s;
}
@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes coin-flip {
  /* Cały cykl: 4.2s
     - 0 → 360°: ~1.2s (28.57%)
     - Pauza na 360°: 3s (28.57% → 100%) */
  0% {
    transform: rotateY(0deg) scale(1) translateZ(0px);
    filter: drop-shadow(0px 0px 45px rgb(255 255 255 / 0.75)) blur(0px);
  }
  5% {
    transform: rotateY(45deg) scale(0.95) translateZ(5px);
    filter: drop-shadow(0px 10px 50px rgb(255 255 255 / 0.65)) blur(0.5px);
  }
  10% {
    /* maksymalne spłaszczenie przy 90° */
    transform: rotateY(90deg) scale(0.75) translateZ(10px);
    filter: drop-shadow(0px 15px 60px rgb(255 255 255 / 0.5)) blur(1px);
  }
  15% {
    transform: rotateY(135deg) scale(0.95) translateZ(5px);
    filter: drop-shadow(0px 10px 50px rgb(255 255 255 / 0.65)) blur(0.5px);
  }
  20% {
    transform: rotateY(180deg) scale(1) translateZ(0px);
    filter: drop-shadow(0px 0px 45px rgb(255 255 255 / 0.75)) blur(0px);
  }
  22% {
    transform: rotateY(225deg) scale(0.95) translateZ(5px);
    filter: drop-shadow(0px -10px 50px rgb(255 255 255 / 0.65)) blur(0.5px);
  }
  25% {
    /* maksymalne spłaszczenie przy 270° */
    transform: rotateY(270deg) scale(0.75) translateZ(10px);
    filter: drop-shadow(0px -15px 60px rgb(255 255 255 / 0.5)) blur(1px);
  }
  27% {
    transform: rotateY(315deg) scale(0.95) translateZ(5px);
    filter: drop-shadow(0px -10px 50px rgb(255 255 255 / 0.65)) blur(0.5px);
  }
  28.57% {
    transform: rotateY(360deg) scale(1) translateZ(0px);
    filter: drop-shadow(0px 0px 45px rgb(255 255 255 / 0.75)) blur(0px);
  }
  29.5% {
    /* efekt bounce po zakończeniu obrotu */
    transform: rotateY(360deg) scale(1.05) translateZ(-5px);
    filter: drop-shadow(0px 0px 50px rgb(255 255 255 / 0.85)) blur(0px);
  }
  31% {
    transform: rotateY(360deg) scale(1) translateZ(0px);
    filter: drop-shadow(0px 0px 45px rgb(255 255 255 / 0.75)) blur(0px);
  }
  100% {
    /* pauza na 360° przez 3 sekundy */
    transform: rotateY(360deg) scale(1) translateZ(0px);
    filter: drop-shadow(0px 0px 45px rgb(255 255 255 / 0.75)) blur(0px);
  }
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  line-height: 30px;
  font-size: 15px;
  overflow-x: hidden;
}

body .container {
  width: 100%;
  overflow: hidden;
}

h2 {
  font-size: 2rem;
}

header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: var(--header-height);
  background-color: var(--accent);
}
header .header-background {
  z-index: -50;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
}

#homepage {
  width: 100%;
  height: 800px;
  pointer-events: none;
  background-image: url("/assets/media/gradient002.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#homepage .homepage-background {
  display: flex;
  justify-content: center;
  flex: 1;
  height: 100%;
  width: 100%;
  /* background: url("/assets/media/patterns/iron-grip.png") repeat top center; */
  background: rgba(255, 255, 255, 0.7);
}

#homepage-content {
  margin-top: calc(var(--header-height) / 2);
  height: 100%;
  width: var(--content-width);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#homepage-content > .homepage-hero,
#homepage-content > .homepage-gallery {
  display: flex;
  flex: 1;
  align-items: center;
  height: calc(100% - var(--header-height));
}
#homepage-content > .homepage-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#homepage-content > .homepage-hero > img {
  object-fit: contain;
  filter: drop-shadow(0px 0px 45px rgb(255 255 255 / 0.75));
}

.coin-animation-container {
  perspective: 1200px;
  perspective-origin: center center;
  width: 300px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#homepage-content > .homepage-hero > .coin-animation-container > .logo {
  width: 100%;
  height: auto;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: coin-flip 4.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0px 0px 45px rgb(255 255 255 / 0.75));
  will-change: transform, filter;
}

#homepage-content > .homepage-hero > .logo-text {
  width: 400px;
}
#homepage-content > .homepage-hero > h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
  color: #000;
}
#homepage-content > .homepage-hero > h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 768px) {
  #homepage-content {
    padding-top: var(--header-height);
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    /* height: auto; */
    height: calc(100% - var(--header-height) - 60px);
    flex-direction: column;
  }
  .coin-animation-container {
    width: 50vw;
  }
  #homepage-content > .homepage-hero > .logo-text {
    width: 85vw;
  }
  #homepage-content > .homepage-hero > h2 {
    font-size: 3.5rem;
  }
  #homepage-content > .homepage-hero > h3 {
    font-size: 2rem;
  }
  #homepage-content > .homepage-hero,
  #homepage-content > .homepage-gallery {
    width: 100%;
  }
}

/* sticky footer */
#sticky-footer {
  display: none;
  z-index: 100;
  position: fixed;
  bottom: 0;
  top: calc(100vh - 60px);
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  background-color: var(--accent);
}

@media screen and (max-width: 768px) {
  #sticky-footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #sticky-footer > h3 {
    font-size: 1.4rem;
  }
  #sticky-footer > h3 > a {
    color: #fff;
    text-decoration: none;
  }
}

/* primary navigation
--------------------------------------------------------------------- */
#nav-wrap ul,
#nav-wrap li,
#nav-wrap a {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

/* nav-wrap */
#nav-wrap {
  font-size: 18px;
  width: 100%;
  height: var(--header-height);
  max-width: var(--content-width);
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  z-index: 100;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
  background-color: var(--accent);
}
.opaque {
  background-color: #333;
}

#nav-wrap > span > img {
  max-height: 60px;
  object-fit: contain;
}
#nav-wrap > h1 {
  color: var(--accent);
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 0;
  padding: 0;
}

/* Mobile button checkbox - ukryty */
.mobile-btn-checkbox {
  display: none;
}

/* Mobile button label (burger menu) */
.mobile-btn-label {
  margin-right: 15px;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.mobile-btn-label span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Animacja burgera w X gdy checkbox jest zaznaczony */
.mobile-btn-checkbox:checked ~ .mobile-btn-label span:first-child {
  transform: rotate(45deg);
}

.mobile-btn-checkbox:checked ~ .mobile-btn-label span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-btn-checkbox:checked ~ .mobile-btn-label span:nth-child(3) {
  transform: rotate(-45deg);
}

ul#nav {
  min-height: var(--header-height);
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  text-align: center;
}
ul#nav li {
  display: inline-block;
}

/* Links */
ul#nav li a {
  /* 8px padding top + 8px padding bottom + 32px line-height = 48px */

  display: inline-block;
  padding: 8px 13px;
  font-size: 1.5rem;
  line-height: 32px;
  text-decoration: none;
  text-align: left;
  color: #fff;

  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

ul#nav li a:active {
  background-color: transparent !important;
}
ul#nav li.current a {
  color: #f06000;
}

/* Hover effect for navigation */
ul#nav li a {
  position: relative;
}

ul#nav li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  transform: skewX(20deg);
  transform-origin: left center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}

ul#nav li a:hover::before {
  opacity: 1;
}
ul#nav li a:hover {
  color: var(--accent);
}

@media screen and (max-width: 768px) {
  #nav-wrap > .logo-mobile {
    display: block;
    margin-left: 5px;
    margin-top: 5px;
  }
  #nav-wrap > .logo-desktop {
    display: none;
  }

  /* Pokaz burger menu na mobilnych */
  .mobile-btn-label {
    display: flex;
  }

  /* Ukryj menu na mobilnych domyślnie */
  ul#nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--accent);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    width: 100%;
    min-height: auto;
  }

  /* Pokaz menu gdy checkbox jest zaznaczony */
  #mobile-btn:checked ~ ul#nav {
    max-height: 400px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  ul#nav li {
    width: 80%;
    text-align: center;
    padding: 0.5rem 0;
  }

  ul#nav li a {
    width: 100%;
    padding: 1rem;
    display: block;
  }
}
@media screen and (min-width: 769px) {
  #nav-wrap > .logo-mobile {
    display: none;
  }
  #nav-wrap > .logo-desktop {
    display: block;
    margin-top: 5px;
  }

  .mobile-btn-label {
    display: none;
  }

  /* Menu na desktopie - zachowaj oryginalne style */
  ul#nav {
    position: static;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: row;
  }
}

/* default
--------------------------------------------------------------- */
#content-wrapper {
  background: var(--bg-color);
  padding-top: 100px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.content {
  width: 96%;
  max-width: var(--content-width);
  margin: 0 auto;
}
/* fixed width for IE8 */
.ie .content {
  width: 1000px;
}

.narrow .content {
  max-width: 980px;
}

.content .content {
  width: auto;
  max-width: none;
  margin: 0 -20px;
}

.content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
}

/* row clearing */
.content:before,
.content:after {
  content: " ";
  display: table;
}
.content:after {
  clear: both;
}

section > .content {
  padding: 4rem 0;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.center {
  justify-content: center;
}

#about {
  width: 100%;
  background: var(--dark-blue);
}

#about .about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
}
#about .about-container > .about-me {
  display: flex;
  flex-direction: column;
}

#about .about-container > .about-me > h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 2rem;
}

#about .about-container > .about-me > p {
  color: #fff;
  font-size: 1.5rem;
}
.category-button {
  font-weight: bold;
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  width: 30%;
  height: 70px;
  position: relative;
  background: transparent;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--accent);
  transform: skew(20deg);
}
.category-button:hover {
  cursor: pointer;
}
.brown-hover:hover::before {
  background: var(--brown);
}
.green-hover:hover::before {
  background: var(--green);
}
.blue-hover:hover::before {
  background: var(--blue);
}

.brown-btn::before {
  background: var(--brown);
}
.green-btn::before {
  background: var(--green);
}
.blue-btn::before {
  background: var(--blue);
}
.brown-btn:hover::before,
.green-btn:hover::before,
.blue-btn:hover::before {
  background: var(--accent);
}

#offer {
  width: 100%;
  background: var(--bg-color);
}
#offer h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
}
#offer .content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
}
#offer .content .offer-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 200px;
  max-height: 200px;
}
#offer .content .offer-item .offer-images {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 1rem;
}
#offer .content .offer-item .offer-images img {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .category-button {
    margin: 1rem 0;
    width: 90%;
  }
  #offer .content .offer-item {
    height: unset;
    max-height: unset;
    flex-direction: column;
  }
  #offer .content .offer-item .offer-images {
    justify-content: center;
  }
  #offer .content .offer-item .offer-images img {
    width: 25vw;
    height: 25vw;
  }
}

#process {
  width: 100%;
  background: #2b2b2b;
}
#process h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
}
#process .content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
}
#process .content .process-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  height: 200px;
  max-height: 200px;
}
#process .content .process-step .process-step-icon {
  width: 160px;
  min-width: 160px;
  height: 160px;
  min-height: 160px;
  border-radius: 100%;
  background-color: #ebeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
}
#process .content .process-step .process-step-icon img {
  width: 90px;
  height: 90px;
}
#process .content .process-step .process-step-content {
  color: var(--white);
}
#process .content .process-step .process-step-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}
#process .content .process-step .process-step-content p {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  #process .content .process-step {
    flex-direction: column;
    height: unset;
    max-height: unset;
    gap: 1rem;
    margin: 1rem 0;
  }
}

/* Gallery */
#gallery {
  width: 100%;
  background: #ebeeee;
}
#gallery h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
}

#gallery .gallery-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#gallery .gallery-container > .thumbnail {
  display: flex;
  cursor: pointer;
  width: 220px;
  height: 220px;
  object-fit: cover;
  overflow: hidden;
}
#gallery .gallery-container > .thumbnail > img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
}

#gallery .gallery-container > .thumbnail:hover > img {
  transform: scale(1.2);
}

/* Slideshow */

#slideshow {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 100%;
}
#slideshow > .slideshow-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  z-index: 0;
}

#slideshow > .slideshow-slide > img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/* Offer page */
#offer-page {
  margin-top: 2rem;
}
#offer-page .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}
#offer-page .item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: var(--white);
  padding: 1rem;
  /* border-radius: 10px; */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  height: 330px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#offer-page .item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
}
/* #offer-page .item-card:hover {
  background-color: #f0f0f0;
} */
#offer-page .item-card .item-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  margin: 0;
  flex-shrink: 0;
  line-height: 1.2;
}
#offer-page .item-card .item-card-description {
  font-size: 1.2rem;
  color: var(--grey);
  line-height: 1.2;
  text-align: center;
  margin: 0;
  flex-shrink: 0;
}
#offer-page .item-card .item-card-image-wrapper {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
#offer-page .item-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  #offer-page {
    margin-bottom: 70px;
  }
  #offer-page .row {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Contact page */
#contact-page {
  width: 100%;
  background: var(--bg-color);
  padding: 4rem 0;
}
#contact-page h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black);
  text-align: center;
  margin-bottom: 3rem;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-item {
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.contact-item h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: bold;
}
.contact-item p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--black);
}
.contact-item a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: var(--accent);
}
.contact-map {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  background: var(--white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.contact-map iframe {
  width: 100%;
  min-height: 500px;
  border: 0;
  border-radius: 4px;
}
.contact-map-link {
  margin-top: 1rem;
  text-align: center;
}
.contact-map-link a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.contact-map-link a:hover {
  color: var(--dark-blue);
}

@media screen and (max-width: 768px) {
  #contact-page {
    padding: 2rem 0;
    margin-bottom: 70px;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-map {
    position: static;
  }
  .contact-map iframe {
    min-height: 400px;
  }
  .contact-item {
    padding: 1.5rem;
  }
  .contact-item h3 {
    font-size: 1.5rem;
  }
  .contact-item p {
    font-size: 1.3rem;
  }
}
