body {
  font-family: Arial, sans-serif;
  font-size: 16px;
}

section {
  padding: 50px 0;
}

.delivery-types {
  width: 100%; 
  background-color: #f0f0f0; 
}

h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
text-align: center;
}

p {
  margin-bottom: 1rem;
}

.color-link {
  color: var(--bs-link-hover-color);
  font-weight: 600;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.icon-container {
flex: 1;
text-align: center;
  background-color: white;
max-width: 95%;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-container img{
width: 20%;
}


.icon-container:hover {
  transform: scale(1.2);
}

.icon {
  width: 60px;
  height: 60px;
  fill: #333;
  transition: fill 0.3s ease;
}

.icon-container:hover img {
filter: invert(44%) sepia(68%) saturate(7248%) hue-rotate(344deg) brightness(100%) contrast(84%);
}

.icon-title {
  margin-top: 10px;
  font-size: 1em;
  color: #333;
}
.delivery-tabs,
.payment-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs {
display: flex;
justify-content: space-around;
margin-bottom: 30px;
}

.tab-button {
display: inline-block;
width: 50%;
padding: 12px;
background-color: inherit;
border: 1px solid var(--bs-link-color);
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.tab-button.active {
color: #fff;
background-color: var(--bs-link-hover-color);
border: 1px solid var(--bs-link-hover-color);
}

.tab-content {
display: none;
}

.tab-content.active {
display: block;
}

.payment-options {
display: flex;
justify-content: space-around;
align-items: baseline;
flex-wrap: wrap;
gap: 20px; 
}

.payment-option {
/* text-align: center; */
max-width: 200px; 
}

.payment-icon {
width: 100%; 
border-radius: 5px;
margin-bottom: 10px;
}

.payment-option p {
font-size: 14px; 
color: #333; 
margin: 0;
}

.delivery-limit {
width: 100%; 
background-color: #FFC0CB; 

}

.delivery-limit p{
text-align: center;

}


/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
.icon-container img {
width: 60%;
}

.tabs {
flex-direction: column;
}

.tab-button {
width: 100%;
text-align: center;
margin-bottom: 10px;
}
}