body {
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    background-color: #ffffff;
    margin: 0;
}


/* основное меню */
header {
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    position: relative;
  }
  
  .logo img {
    max-width: 150px;
  }
  
  .menu-container {
    display: flex;
    align-items:center;
    gap: 20px;
  }
  
  .nav {
    display: flex;
    gap: 15px;
  }
  
  .nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid white;
  }
  
  .nav a:hover {
    border: 2px solid #28a745;
  }
  
  .nav a:active {
    border: 2px solid #28a745;
  }
  
  .sign-in {
    display: flex;
    gap: 10px;
    margin-left: 30px;
  }
  
  .sign-in a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: black;
  }
  
  .sign-in a:hover {
    color: #00B259;
  }

  
  .phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    padding-left: 25px;
    background: url(/assets/ico/600w/phone-number.png) no-repeat left center;
    background-size: 18px 18px;
  }
  .personAccount{
    padding: 8px 15px;
    margin-left: 20px;
  }

  .personAccount {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 35px; 
    background: url(/assets/ico/600w/myAccount.png) no-repeat left center;
    background-size: 30px 30px; 
  }
  
  
  
  .language-switcher {
    position: relative;
    display: inline-block;
  }
  
  .toggle-checkbox {
    display: none;
  }
  
  .current-lang {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .current-lang .arrow {
    max-width: 14px;
    margin-left: 10px;
    transition: transform 0.2s;
  }
  
  .language-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    list-style: none;
    padding: 0;
    width: max-content;
  }
  
  .language-options .language-option {
    padding: 8px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .language-options .language-option:hover {
    background-color: #f0f0f0;
  }
  
  .toggle-checkbox:checked + .current-lang + .language-options {
    display: block;
  }
  
  .toggle-checkbox:checked + .current-lang .arrow {
    transform: rotate(-90deg);
  }
  
  /* Кнопка меню */
  .menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
  }
  
  .menu-icon span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .menu-toggle {
    display: none;
  }



/* page content */
.submenu {
    max-width: 1130px;
    margin: 0 auto;
    display: flex;
    justify-content: start;
    gap: 30px;
    padding: 25px 15px;
    overflow: hidden;   
    transition: 0.3s;
}

.submenu a {
    text-decoration: none;
    color: #646363;
    font-weight: 500;
    padding-bottom: 10px;
}

.submenu a:hover {
    color: #28a745;
}


/* Скрываем все вкладки по умолчанию */
/*.tab-content {*/
/*    display: none;*/
/*}*/

/* Показываем активную вкладку */
/*.tab-content.active {*/
/*    display: block;*/
/*}*/




.main-content {
    max-width: 1130px;
    margin: 20px auto;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 0;
    
}

/* swiper */
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    border-radius: 24px;
    padding: 60px 20px;
    
}
.swiper-content {
    max-width: 50%;
    padding-left: 60px;
}

.swiper-content h2{
    font-size: 2rem;
}

.swiper-button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 20px 50px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 60px;
    font-size: 1.2rem;
    
}

.swiper-button:hover{
    background: #218838;
}

.swiper-slide img {
    max-width: 35%;
    border-radius: 10px;
}



/* feuters */
.features-section {
    max-width: 1130px;
    margin:30px auto;
    padding: 20px;   
    text-align: center;
}

.second-part{
    margin-top: 80px;
}

.features-section h2{
    text-align: left; 
    margin-bottom: 40px; 
}

.counter-section-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.single-card {
    padding: 45px 20px;
    border-radius: 20px;
    text-align: center;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-card:hover {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
}

.single-card img {
    max-width: 70px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.single-card:hover img {
    filter: invert(100%) brightness(400%); 
}

.single-card span {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}


/* counter section */
.counter-section {
    max-width: 100%;
    margin: 0;
    margin-top: 80px;
    background-color: #333;
    color: white;
    padding: 60px 0px;
    text-align: center; 
   
}

.counter-section h2{
    max-width: 1130px;
    margin: 20px auto;
    margin-bottom: 80px;
    text-align: start;
}

.counter {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    max-width: 1130px;
    margin: 20px auto;
}

.counter div {
    font-size: 1em;
    font-weight: 500;
}

.counter span {
    font-size: 4em;
    font-weight: 700;
    color: #28a745;

}


/* штраФЫ  и цены0 */
.penalty-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 0px;
    text-align: center;
  }
  
  .penalty-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 70px;
    color: #000; 
  }
  
  .penalty-table {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .penalty-row {
    display: flex;
    justify-content: space-between;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    padding: 30px 15px;
  }
  
  .penalty-column {
    font-size: 18px;
    color: #000; 
    font-weight: 500;
  }
  
  .penalty-links {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
  }
  
  .link-block {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .link-block p {
    margin-bottom: 30px;
    margin-top: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #000;    
  }
  
  .point-keys-btn{
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 8px;
    transition: background-color 0.3s;
  }
  
  .point-keys-btn:hover {
    background-color: #218838; 
  }


  /* footer */
  .footer {
    background-color: #2e2d2d;
    color: #fff;
    padding: 20px 10px;
  }
  
  .footer-container {
    max-width: 1130px;
    margin: 0px  auto;
    margin-top: 80px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 70px;
    border-bottom: 1px solid gray;
  }
  
  .footer-logo img {
    width: 150px;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 18px;
    font-weight: bold;
  }
  
  .footer-contact p {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
  }
  
  .footer-contact span {
    font-size: 14px;
    color: #aaa;
  }
  
  .footer-social h4 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
  }
  
  .social-icons a {
    margin-right: 15px;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
  }
  
  .footer-links {
    max-width: 1130px;
    margin: 0px auto;
    margin-bottom: 70px;
    text-align: left;
    padding-bottom: 30px;
    border-bottom: 1px solid gray;
  }
  
  .footer-links a {
    margin: 0 20px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
  }
  
  .footer-links a:hover {
    color: #28a745;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #aaa;
  }
  



/* правила и штрафы */
.parking-rules {
  background-color: #f9f9f9;
  padding: 40px 0 0 0;
  border-radius: 24px;
  border: 1px solid #f9f9f9;
  max-width: 970px;
  margin: 50px auto;
}

.rules-container {
  text-align: left;
  background-color: #ffffff;
  border-radius: 0px 0px 22px 22px;
}

.rules-title {
  font-size: 30px;
  font-weight: 700;
  padding: 10px 0px 10px 30px;
  color: #333;
}

.rules-subtitle {
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  margin-bottom: 40px;
  color: #333;
}

.rules-list {
  list-style: none;
  padding: 40px 40px;
  margin: 0;
}

.rules-list li {
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
  padding-bottom: 15px;
  line-height: 1.5;
  color: #444;
  border-bottom: 1px solid rgb(212, 212, 212);
}

.rules-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-size: 30px;
  line-height: 0.5;
}




.penalty-rules {
  background-color: #f9f9f9;
  padding: 40px 0 0 0;
  border-radius: 24px;
  border: 1px solid #f9f9f9;
  max-width: 970px;
  margin: 50px auto;
}

.penalty-container{
  text-align: left;
  background-color: #ffffff;
  border-radius: 0px 0px 22px 22px;
}


.penalty-title {
  font-size: 30px;
  font-weight: 700;
  padding: 10px 0px 10px 30px;
  color: #333;
}

.penalty-subtitle {
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  margin-bottom: 40px;
  color: #333;
}

.penalty-list {
  list-style: none;
  padding: 40px 40px;
  margin: 0;
}

.penalty-list li  {
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
  padding-bottom: 15px;
  line-height: 1.5;
  color: #444;
  border-bottom: 1px solid rgb(212, 212, 212);
}

.penalty-list li span{
  font-weight: 600;
}

.penalty-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-size: 30px;
  line-height: 0.5;
}

/* вопросы и ответы */

.faq-section {
    max-width: 970px;
    margin: 60px auto;
    margin-bottom: 150px;
}

.faq-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Стили для поиска */
.faq-search-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto 50px;
}

.faq-search {
    width: 100%;
    padding: 20px 20px 20px 20px;
    padding-right: 10px;
    border: 1px solid #28a745;
    border-radius: 24px;
    outline: none;
    font-size: 16px;
}


.search-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 16px;
}

.search-icon img{
    width: 20px;
    height: 20px;
    padding: 2px;
}
.search-icon img:hover{
    cursor: pointer;
}

/* Стили для аккордеона */
/*.faq-accordion {*/
/*    margin-top: 100px;*/
/*}*/

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}


.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 15px;
    cursor: pointer;
    outline: none;
    position: relative;
}

.faq-question::after {
    content: "";
    background: url('/assets/ico/600w/plus.png') no-repeat center center;
    background-size: 20px 20px; 
    width: 18px;
    height: 18px;
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question {
    font-weight: 600;
}


.faq-item[open] .faq-question::after {
    content: "";
    background: url('/assets/ico/minus.png') no-repeat center center;
    background-size: 18px 2px;
    transform: rotate(180deg);
}


.faq-answer {
    padding: 15px;
    padding-right: 50px;
    font-size: 15px;
    color: #555;
}


/* новости */
.news-container {
    max-width: 1130px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 20px;
}

.news-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    gap: 30px;
}

.tabs input {
    display: none;
}

.tabs label {
    font-size: 16px;
    font-weight: 500;
    color: #646363;
    cursor: pointer;
    padding-bottom: 10px;
}

.tabs input:checked + label {
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #28a745;
}

.tab-news-content{
    background-color: #f9f9f9;
    border: 1px solid #eeeeee;
    padding: 40px 60px;
    border-radius: 24px;
    margin-top: 40px;
}

.news-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.news-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.news-item span {
    color: #646363;
    font-size: 14px;
}

.more-news-btn {
    display: block;
    margin: 70px auto 0;
    padding: 15px 30px;
    background-color: #28a745;
    color: #fff;
    border: 1px solid #28a745;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.more-news-btn:hover {
    background-color: #63cc7c;
    border-color: #63cc7c;
}




/* медиа запросы */


  /* Планшеты */
@media (max-width: 1024px) {
  .menu-icon {
    display: flex;
  }

  .menu-container {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .menu-toggle:checked ~ .menu-container {
    display: flex;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .sign-in {
    flex-direction: column;
    gap: 10px;
  }

  .submenu {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
  }

  .content {    
      padding: 10px;
  }

  .counter-section-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .swiper-slide{
    width: 95%;
    padding: 40px 10px;
  }

  .swiper-slide img{
    width: 30%;
  }

  .swiper-content h2 {
      font-size: 2rem;
  }

  .swiper-button {
      font-size: 1rem;
      padding: 10px 15px;
  }

  .single-card {
      padding: 30px 15px;
  }

  .faq-search {
    font-size: 14px;
    padding: 15px;
}

.search-icon {
    width: 18px;
    height: 18px;
    right: 8px;
}

.search-icon img {
    width: 18px;
    height: 18px;
}


}

/* Мобильные устройства */
@media (max-width: 768px) {
  .submenu {
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
  }

  .cards {
      grid-template-columns: 1fr;
      gap: 15px;
  }

  .content {
     
      padding: 10px;
  }

  .counter {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }

  .counter-section-cards {
      grid-template-columns: 1fr;
      gap: 15px;
  }

  .swiper-slide{
    padding: 30px 10px;
  }

  .swiper-content {
      padding-left: 20px;
      margin-left:15px  ;
      max-width: 100%;
  }

  .swiper-slide img {
      max-width: 60%;
      margin: 0 auto;
  }

  .swiper-content h2 {
      font-size: 1.8rem;
  }

  .swiper-button {
      font-size: 0.9rem;
      padding: 8px 12px;
  }

  .single-card {
      padding: 20px 10px;
  }

  .video-section {
      width: 90%;
  }

  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-contact p {
      font-size: 14px;
  }

  .footer-links {
      text-align: center;
  }

  .footer-links a {
      margin: 5px;
      display: inline-block;
  }

.faq-search-wrapper {
    max-width: 90%;
}

.faq-search {
    font-size: 14px;
    padding: 12px;
    border-radius: 16px;
}

.search-icon {
    width: 16px;
    height: 16px;
    right: 5px;
}

.search-icon img {
    width: 16px;
    height: 16px;
}
}

/* ДЛя маленьких экранов*/
@media (max-width: 480px) {

  .submenu a {
      font-size: 14px;
  }

  .swiper-slide{
    padding: 20px 10px;
  }
  .swiper-slide img{
    max-width: 160px;
  }

  .swiper-content h2 {
      font-size: 18px;
  }
  .swiper-content p{
    font-size: 14px;
  }

  .swiper-button {
      font-size: 14px;
      padding: 8px 10px;
      margin-top: 2px;
  }

  .single-card {
      padding: 15px;
  }


  .video-section{
      max-width: 90%;
  }
  .footer-container {
      padding: 20px;
  }

  .footer-bottom {
      font-size: 12px;
  }

.faq-search {
    font-size: 12px;
    padding: 10px;
    border-radius: 12px;
}

.search-icon {
    width: 14px;
    height: 14px;
    right: 5px;
}

.search-icon img {
    width: 14px;
    height: 14px;
}
}


 