/********** Template CSS **********/
:root {
  --background-light: #f8f9fa;
  --background-silver: #e5e7ea;
  --text-dark: #2c2c2c;
  --accent-color: #9a9a9a;
  --text-dark: #2c2c2c;
  --text-gray: #7d6c6c;
  --accent-silver: #c0c0c0;
  --accent-silver-deep: #9a9a9a;
  --text-secondary: #6c757d;
  --accent-hover: #d1d3d4;
}
body {
  background-color: var(--background-light);
  color: var(--text-dark);
}

/* Встановлення ширини для intl-tel-input */
.iti {
  width: 100%;
  position: relative;
}


.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.sale_h5 {
  font-style: italic;
  font-size: 16px;
  text-align: right;
  background: #9b0000;
  display: inline-block;
  padding: 4px 15px;
  color: #fff;
  border-radius: 10px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}


.image-container {
  position: relative;
  width: 100%;
  /* margin-bottom: 10px; */
}

.image-container img {
  width: 100%;
  display: block;
  /* height: 500px;  */
  object-fit: cover;
}


.image-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 24px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  /* Напівпрозорий фон */
  padding: 5px 10px;
  border-radius: 1px;
}

.review_item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.bg-dark {
  background-color: #a0a0a0 !important;
}

.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #6c757d;
}

.navbar-dark .navbar-brand div {
  color: var(--text-dark) !important;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 100%;
  background: #e4e4e4;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #e9e9e9;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: #e9e9e9;
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: #e9e9e9;
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid #e9e9e9;
  color: #fff;
  padding: 8px 0;
  background: #757575;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: #e9e9e9;
}

#declineBtn {
  background-color: #fff;
  color: #4a4a4a;
}

#declineBtn:hover {
  background-color: #e9e9e9;
  color: #fff;
}

/* Footer Style */
.topics {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* new styles  */
/* footer  */

.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #3c3333);
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 40px;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand a {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}

.footer-brand a:hover {
  color: var(--accent-color);
}

.footer-brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), #3c3333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-icon .material-icons {
  font-size: 20px;
  color: white;
}

.footer-section {
  margin-bottom: 32px;
}

.footer-section h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px 0;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover {
  transform: translateX(4px);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(189, 34, 34, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.footer-contact-icon .material-icons {
  font-size: 18px;
  color: var(--accent-color);
}

.footer-contact-text {
  color: #e0e0e0;
  line-height: 1.5;
}

.footer-link {
  color: #e0e0e0;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-link:hover::before {
  width: 4px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 24px 0;
  margin-top: 40px;
  text-align: center;
  color: #999;
}

.footer-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(189, 159, 34, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, 50%);
}

@media (max-width: 768px) {
  .footer-content {
    padding: 40px 0 30px;
  }

  .footer-brand a {
    font-size: 1.6rem;
    justify-content: center;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 24px;
  }

  .footer-contact-item {
    justify-content: center;
  }
}
/* new styles  */

/* Utilities */
.spacer-sm { padding: 1.5rem 0; }
.spacer-md { padding: 3rem 0; }
.spacer-lg { padding: 5rem 0; }
.spacer-xl { padding: 8rem 0; }

.text-emphasis {
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.text-emphasis::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-silver);
}

/* Стилі для головного екрану */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: var(--background-light);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.4));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 14vh;
  padding-bottom: 10vh;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--accent-silver-deep);
  max-width: 600px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  max-width: 550px;
}

.btn-primary-custom {
  background-color: var(--text-dark);
  color: var(--background-light);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--text-secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom .material-icons {
  vertical-align: middle;
  margin-left: 0.5rem;
  font-size: 1.3rem;
}

@media (max-width: 991.98px) {
  .hero-image, .hero-overlay {
    width: 100%;
    opacity: 0.15;
  }
  
  .hero-content {
    text-align: center;
    padding-top: 15vh;
  }
  
  .hero-title {
    font-size: 2.8rem;
    max-width: 100%;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    max-width: 100%;
  }
  
  .hero-description {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* Стилі для блоку "Chi siamo" */
.about-section {
  background-color: var(--background-light);
  position: relative;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver);
}

.about-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.03);
}

.about-highlight {
  color: var(--text-dark);
  font-weight: 600;
}

/* Стилі для блоку "Cosa offriamo" */
.services-section {
  background-color: var(--background-silver);
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver-deep);
}

.services-list {
  padding-left: 0;
  list-style-type: none;
}

.services-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.6;
}

.services-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-silver-deep);
}

/* Стилі для блоку "Come funziona la piattaforma" */
.platform-section {
  background-color: var(--background-light);
}

.platform-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.platform-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver);
}

.platform-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* Стилі для блоку "Perché scegliere noi" */
.why-us-section {
  background-color: var(--background-silver);
}

.why-us-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.why-us-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver-deep);
}

.why-us-list {
  padding-left: 0;
  list-style-type: none;
}

.why-us-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.6;
}

.why-us-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-silver-deep);
}
/* Стилі для блоку "Le nostre qualità" */
.qualities-section {
  background-color: var(--background-light);
}

.qualities-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.qualities-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver);
}

.quality-card {
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quality-icon {
  font-size: 2.5rem;
  color: var(--accent-silver-deep);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.quality-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.quality-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Стилі для блоку "Contatto" */
.contact-section {
  background-color: #d8d8d8;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver-deep);
}

.contact-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control, .form-select {
  padding: 0.8rem 1rem;
  border: 1px solid var(--accent-silver);
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent-silver-deep);
  box-shadow: 0 0 0 0.2rem rgba(192, 192, 192, 0.25);
}

.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  font-size: 0.85rem;
}

.form-btn {
  background-color: var(--text-dark);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-btn:hover {
  background-color: var(--text-secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Стилі для блоку "Missione e visione" */
.mission-section {
  background-color: var(--background-light);
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.mission-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver);
}

.mission-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* Стилі для блоку "Approccio agli investimenti" */
.approach-section {
  background-color: var(--background-silver);
}

.approach-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.approach-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver-deep);
}

.approach-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.approach-card {
  padding: 3rem;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent-silver-deep);
}

/* Стилі для блоку "Il nostro team" */
.team-section {
  background-color: var(--background-light);
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.team-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver);
}

.team-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.team-value-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.team-value {
  flex: 1 0 calc(33.333% - 2rem);
  padding: 1.5rem;
  background-color: var(--background-silver);
  border-radius: 4px;
  text-align: center;
  position: relative;
  min-width: 200px;
}

.team-value-icon {
  display: block;
  font-size: 2rem;
  color: var(--accent-silver-deep);
  margin-bottom: 1rem;
}

.team-value-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .team-value {
    flex: 1 0 100%;
  }
}
/* Стилі для блоку "Quali servizi offriamo" */
.services-full-section {
  background-color: var(--background-light);
}

.services-full-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.services-full-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver);
}

.services-full-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.service-card {
  margin-bottom: 3rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: white;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-img-container {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
  min-height: 240px;
}

.service-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-silver-deep);
  margin-bottom: 0.5rem;
  display: block;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.service-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Стилі для блоку статей */
.articles-section {
  background-color: var(--background-silver);
}

.articles-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.articles-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver-deep);
}

.article-card {
  margin-bottom: 4rem;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.article-img-container {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-img {
  transform: scale(1.05);
}

.article-content {
  padding: 2.5rem;
}

.article-number {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  background-color: var(--accent-silver-deep);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.article-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.article-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.article-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-link:hover {
  color: var(--accent-silver-deep);
}

.article-link .material-icons {
  margin-left: 0.5rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.article-link:hover .material-icons {
  transform: translateX(5px);
}
/* Стилі для блоку "Contattaci" */
.contact-info-section {
  background-color: var(--background-light);
}

.contact-info-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.contact-info-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--accent-silver);
}

.contact-info-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.contact-info-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-info-icon {
  color: var(--accent-silver-deep);
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-right: 0.5rem;
}

.contact-info-value {
  color: var(--text-secondary);
}

.contact-info-value a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-value a:hover {
  color: var(--text-dark);
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 0;
  padding-bottom: 60%; /* Аспектне співвідношення карти */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767.98px) {
  .map-container {
    padding-bottom: 75%; /* Збільшуємо висоту на мобільних */
  }
}