:root {
  --primary-color: #8f8ea0;
  --primary-dark: #6f1327;
  --accent-color: #484750;
  --bg-color: #f3f3f3;
  --white: #ffffff;
  --dark: #333333;
  --border-color: #e0e0e0;
  --overlay-dark: rgba(0, 0, 0, 0.4);
  --radius: 5px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background:#f3f3f3;
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  color: #666666;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Mulish", sans-serif;
}

hr {
  height: 0;
  color: #eee;
  border: 1px solid #eee;
  margin: 2em 0 1em;
}
.container {
  max-width: 990px;
  padding: 0 15px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 15px;
  position: relative;
}
.input-text {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-subscribe {
  padding-right: 100px;
}
.btn-subscribe {
  color: #fff;
  background-color: #8f8ea0;
  border-color: #8f8ea0;
  cursor: pointer;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0 10px;
  border: none;
  border-bottom-right-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.header {
  background-color: #ffffff;
  padding: 30px 0;
  position: relative;
  border-bottom: #a622c7;
}
.header__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__logo a {
  color: #000000;
  font-size: 160%;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.nav {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.nav > li {
  margin-right: 30px;
}
.nav > li:last-child {
  margin-right: 0;
}
.nav > li > a {
  text-decoration: none;
  color: #000000;
}
.nav > li > a:hover {
  color: #0088c7;
}

.main {
  padding: 40px 0;
}

.contact-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}
.contact-section__row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 -15px;
}
.contact-section__col {
  width: 33.33%;
  padding: 0 15px;
}

.footer {
  padding: 15px 0;
  background-color: #f1f1f1;
  text-align: center;
  color: #333333;
}
.footer__nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}
.footer__nav > li {
  margin: 0 10px 5px;
}
.footer__nav > li > a {
  text-decoration: underline;
  color: #333333;
}
.footer__nav > li > a:hover {
  text-decoration: none;
}



.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background-color: #0088c7;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 110%;
  transition: background-color 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 136, 199, 0.3);
}

.btn-primary:hover {
  background-color: #006699;
  box-shadow: 0 5px 15px rgba(0, 136, 199, 0.4);
}


@media (max-width: 990px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 769px) {
  .btn__open-nav {
    display: none;
  }
}
@media (max-width: 768px) {

  .btn__open-nav {
    display: block;
    border: none;
    background: none;
    width: 40px;
  }
  .btn__open-nav span {
    display: block;
    background-color: #000000;
    width: 100%;
    height: 5px;
    margin-bottom: 6px;
  }
  .btn__open-nav span:last-child {
    margin-bottom: 0;
  }
  .nav {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 100%;
    z-index: 1;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 11;
    display: none;
  }
  .nav.open {
    display: block;
  }
  .nav > li {
    width: 100%;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }
  .nav > li > a {
    display: block;
    padding: 15px 15px;
  }
  
  .contact-section {
    padding: 30px 0;
  }
  .contact-section__row {
    flex-wrap: wrap;
    margin: 0 -15px -30px;
  }
  .contact-section__col {
    width: 100%;
    padding: 0 15px 30px;
  }
  .subscribe-form h3 {
    text-align: center;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 100%;
  }
  
  .features__row {
    margin: 0 -15px -20px;
  }

  
  .icon-placeholder {
    font-size: 2.5rem;
  }
  
  .feature-item__content h3 {
    font-size: 120%;
  }
}





/* Cookie Popup styles */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-popup-text {
  flex: 1;
  color: #ffffff;
}

.cookie-popup-text h4 {
  margin: 0 0 10px 0;
  font-size: 120%;
  font-weight: 600;
  color: #ffffff;
}

.cookie-popup-text p {
  margin: 0;
  line-height: 1.5;
  font-size: 95%;
  color: #e0e0e0;
}

.cookie-popup-text a {
  color: #4fc3f7;
  text-decoration: underline;
}

.cookie-popup-text a:hover {
  color: #29b6f6;
  text-decoration: none;
}

.cookie-popup-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 95%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.cookie-btn-accept {
  background-color: #8f8ea0;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #3535d1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 66, 234, 0.4);
}

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #666666;
}

.cookie-btn-reject:hover {
  background-color: #666666;
  border-color: #888888;
  transform: translateY(-2px);
}

/* Mobile adaptation for cookie popup */
@media (max-width: 768px) {
  .cookie-popup {
    padding: 15px;
  }
  
  .cookie-popup-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cookie-popup-text h4 {
    font-size: 110%;
  }
  
  .cookie-popup-text p {
    font-size: 90%;
  }
  
  .cookie-popup-actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 20px;
    font-size: 90%;
  }
}

@media (max-width: 480px) {
  .cookie-popup-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* Thank You Page styles */
.thank-you-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-icon i {
  font-size: 4rem;
  color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
  padding: 1rem;
  border-radius: 50%;
  display: inline-block;
}

.thank-you-content h1 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.thank-you-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.thank-you-content p:last-of-type {
  margin-bottom: 2.5rem;
}

.thank-you-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(66, 66, 234, 0.3);
}

.thank-you-actions .btn-primary:hover {
  background: #3535d1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 66, 234, 0.4);
  color: var(--white);
}

.thank-you-actions .btn-primary i {
  font-size: 1.2rem;
}

/* Mobile adaptation for thank you page */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 4rem 0;
  }
  
  .thank-you-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 1.8rem;
  }
  
  .thank-you-content p {
    font-size: 1rem;
  }
  
  .thank-you-icon i {
    font-size: 3rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .thank-you-content {
    padding: 1.5rem 1rem;
  }
  
  .thank-you-content h1 {
    font-size: 1.6rem;
  }
  
  .thank-you-actions .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* new style  */

/* Стилі для футера */
.footer-section {
  background: #2c2c2c;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.disclaimer-text {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #cccccc;
}

.footer-contact-item .material-icons {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.footer-contact-item span {
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #999999;
  font-size: 0.9rem;
  margin: 0;
}

.disclaimer-section {
  background: #1a1a1a;
  padding: 1.5rem 0;
  border-top: 1px solid #333333;
}

.disclaimer-content {
  text-align: center;
}

.disclaimer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.disclaimer-text-bottom {
  color: #aaaaaa;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* Адаптивність */
@media (max-width: 968px) {
  .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
  }
  
  .footer-col:first-child {
      grid-column: 1 / -1;
      margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
      padding: 40px 0 15px;
  }
  
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .footer-col:first-child {
      grid-column: auto;
  }
  
  .disclaimer-section {
      padding: 1rem 0;
  }
}

@media (max-width: 480px) {
  .footer-grid {
      gap: 1.5rem;
  }
  
  .footer-contact-item {
      flex-direction: column;
      gap: 0.5rem;
      align-items: flex-start;
  }
  
  .footer-contact-item .material-icons {
      margin-top: 0;
  }
}


/*# sourceMappingURL=styles.css.map*/


/* new styles  */

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Стилі для блоку 1: Головний екран */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: 5%;
}

.hero-title {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btn {
  background-color: var(--primary-color);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.hero-btn:hover {
  background-color: var(--primary-dark);
}

/* Стилі для блоку 2: Что такое автосервис? */
.about-service {
  background-color: var(--white);
}

.about-service .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-service-content {
  flex: 1;
}

.about-service-img {
  flex: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-service-img:hover {
  transform: scale(1.02);
}

.about-service-text {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

/* Стилі для блоку 3: Техническое обслуживание автомобилей */
.maintenance {
  background-color: var(--bg-color);
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.maintenance-item {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.maintenance-item:hover {
  transform: translateY(-5px);
}

.maintenance-title {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.maintenance-title .material-icons {
  margin-right: 10px;
  color: var(--primary-color);
}

.maintenance-text {
  color: var(--dark);
  line-height: 1.7;
}

/* Стилі для блоку 4: Ремонтные работы */
.repair {
  background-color: var(--white);
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.repair-item {
  background-color: var(--bg-color);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.repair-item:hover {
  transform: translateY(-5px);
}

.repair-title {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.repair-title .material-icons {
  margin-right: 10px;
  color: var(--primary-color);
}

.repair-text {
  color: var(--dark);
  line-height: 1.7;
}

/* Адаптивність */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    padding: 0 20px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .about-service .container {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-service-content, 
  .maintenance-title, 
  .repair-title {
    text-align: center;
  }
  
  .maintenance-title .material-icons,
  .repair-title .material-icons {
    margin-right: 5px;
  }
  
  .about-service .section-title::after,
  .maintenance .section-title::after,
  .repair .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .maintenance-grid,
  .repair-grid {
    grid-template-columns: 1fr;
  }
  
  .maintenance-item,
  .repair-item {
    padding: 20px;
  }
}
/* Стилі для блоку 5: Автомойка — основные виды и советы */
.carwash {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.carwash .container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
}

.carwash-content {
  flex: 1;
}

.carwash-img-container {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carwash-img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  display: block;
}

.carwash-img-container:hover .carwash-img {
  transform: scale(1.05);
}

.carwash-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(143, 142, 160, 0.2), rgba(72, 71, 80, 0.1));
  z-index: 1;
}

.carwash-text {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Стилі для блоку 6: Шиномонтаж и уход за шинами */
.tire-service {
  background-color: var(--white);
  position: relative;
}

.tire-service .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.tire-service-content {
  flex: 1;
}

.tire-service-img {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tire-service-img img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  display: block;
}

.tire-service-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.tire-service-img:hover img {
  transform: scale(1.05);
}

.tire-service-img:hover::before {
  opacity: 0.1;
}

.tire-service-text {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Стилі для блоку 7: Полезные советы автолюбителям */
.tips {
  background-color: var(--bg-color);
  position: relative;
}

.tips .container {
  max-width: 900px;
}

.tips-list {
  margin-top: 40px;
}

.tip-item {
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tip-item:hover {
  transform: translateX(5px);
}

.tip-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
  opacity: 0;
  transition: var(--transition);
}

.tip-item:hover::before {
  opacity: 1;
}

.tip-title {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.tip-title .material-icons {
  margin-right: 10px;
  color: var(--primary-color);
}

.tip-text {
  color: var(--dark);
  line-height: 1.7;
}

.tips .section-title {
  text-align: center;
}

.tips .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Адаптивність для нових блоків */
@media (max-width: 768px) {
  .carwash .container,
  .tire-service .container {
    flex-direction: column;
  }
  
  .carwash-content,
  .tire-service-content {
    text-align: center;
  }
  
  .tip-item:hover {
    transform: translateY(-5px);
  }
  
  .tip-item::before {
    width: 100%;
    height: 4px;
    top: auto;
    bottom: 0;
  }
  
  .tip-title {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .carwash-text,
  .tire-service-text,
  .tip-text {
    font-size: 1rem;
  }
  
  .tip-item {
    padding: 20px;
  }
}



/* Стилі для блоку "О нас" (головний екран для другої сторінки) */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: 1;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 20px;
}

.about-hero-title {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-hero-subtitle {
  font-size: 1.4rem;
  color: var(--white);
  margin-top: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
}

.about-hero-divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 20px auto;
  display: block;
}

/* Анімація при завантаженні */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero-title,
.about-hero-subtitle,
.about-hero-divider {
  animation: fadeInUp 0.8s ease forwards;
}

.about-hero-title {
  animation-delay: 0.2s;
}

.about-hero-divider {
  animation-delay: 0.4s;
}

.about-hero-subtitle {
  animation-delay: 0.6s;
}

/* Адаптивність */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 400px;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.1rem;
  }
}
/* Стилі для блоку "Миссия AutoClarity" */
.mission {
  background-color: var(--white);
  padding: 100px 0;
  position: relative;
}

.mission .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.mission-content {
  flex: 1;
}

.mission-img-container {
  flex: 1;
  position: relative;
}

.mission-img {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.mission-img-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.1;
  top: 20px;
  left: 20px;
  border-radius: var(--radius);
  z-index: 1;
  transition: var(--transition);
}

.mission-img-container:hover::before {
  top: 10px;
  left: 10px;
  opacity: 0.2;
}

.mission-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.mission-text {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Стилі для блоку "Почему мы создали этот сайт" */
.why-we {
  background-color: var(--bg-color);
  padding: 100px 0;
  position: relative;
}

.why-we-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 2.5rem;
  text-align: center;
}

.why-we-subtitle {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 400;
}

.why-we-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-we-item {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-we-item:hover {
  transform: translateY(-10px);
}

.why-we-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  opacity: 0;
  transition: var(--transition);
}

.why-we-item:hover::before {
  opacity: 1;
}

.why-we-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.why-we-item-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.why-we-item-text {
  color: var(--dark);
  line-height: 1.7;
}

/* Стилі для блоку "Для кого наш сайт" */
.for-whom {
  background-color: var(--white);
  padding: 100px 0;
  position: relative;
}

.for-whom-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-align: center;
}

.for-whom-subtitle {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 400;
}

.for-whom-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.for-whom-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  background-color: var(--bg-color);
}

.for-whom-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(10px);
}

.for-whom-icon {
  font-size: 2rem;
  color: var(--primary-color);
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-whom-content {
  flex: 1;
}

.for-whom-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.for-whom-item-text {
  color: var(--dark);
  line-height: 1.7;
}

/* Адаптивність для нових блоків */
@media (max-width: 992px) {
  .why-we-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mission .container {
    flex-direction: column-reverse;
  }
  
  .mission-title, 
  .why-we-title, 
  .for-whom-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .mission-text {
    text-align: center;
  }
  
  .why-we-grid {
    grid-template-columns: 1fr;
  }
  
  .for-whom-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .for-whom-icon {
    margin-bottom: 10px;
  }
  
  .for-whom-item:hover {
    transform: translateY(-5px);
  }
  
  .mission-img-container::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .mission, 
  .why-we, 
  .for-whom {
    padding: 60px 0;
  }
}
/* Стилі для блоку "Ремонт и диагностика" */
.diagnostics {
  background-color: var(--bg-color);
  padding: 90px 0;
  position: relative;
}

.diagnostics .container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 50px;
}

.diagnostics-content {
  flex: 1.2;
}

.diagnostics-img {
  flex: 0.8;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.diagnostics-img img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  display: block;
}

.diagnostics-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(143, 142, 160, 0.3), rgba(72, 71, 80, 0.1));
  z-index: 1;
}

.diagnostics-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.diagnostics-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.diagnostics-item {
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
}

.diagnostics-item-title {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.diagnostics-item-title .material-icons {
  margin-right: 10px;
  color: var(--primary-color);
}

.diagnostics-item-text {
  color: var(--dark);
  line-height: 1.7;
}

/* Стилі для блоку "Мойка автомобилей" */
.carwash-info {
  background-color: var(--white);
  padding: 90px 0;
  position: relative;
}

.carwash-info .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.carwash-info-content {
  flex: 1.2;
}

.carwash-info-img {
  flex: 0.8;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carwash-info-img img {
  width: 100%;
  height: auto;
  transition: var(--transition);
  display: block;
}

.carwash-info-img:hover img {
  transform: scale(1.05);
}

.carwash-info-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.carwash-info-text {
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.carwash-info-subtitle {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin: 1.5rem 0 1rem;
}

.carwash-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.carwash-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  line-height: 1.7;
}

.carwash-info-list li .material-icons {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Стилі для блоку "Шиномонтаж" */
.tire-info {
  background-color: var(--bg-color);
  padding: 90px 0;
  position: relative;
}

.tire-info .container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 50px;
}

.tire-info-content {
  flex: 1.2;
}

.tire-info-img-container {
  flex: 0.8;
  position: relative;
}

.tire-info-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.tire-info-img-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.1;
  bottom: -15px;
  right: -15px;
  border-radius: var(--radius);
  z-index: 1;
  transition: var(--transition);
}

.tire-info-img-container:hover::before {
  bottom: -8px;
  right: -8px;
  opacity: 0.2;
}

.tire-info-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.tire-info-text {
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Адаптивність для інформаційних блоків */
@media (max-width: 992px) {
  .diagnostics .container,
  .carwash-info .container,
  .tire-info .container {
    flex-direction: column;
    gap: 30px;
  }
  
  .diagnostics-content,
  .carwash-info-content,
  .tire-info-content,
  .diagnostics-img,
  .carwash-info-img,
  .tire-info-img-container {
    flex: 1;
    width: 100%;
  }
  
  .diagnostics-title,
  .carwash-info-title,
  .tire-info-title {
    text-align: center;
    font-size: 2rem;
  }
  
  .diagnostics-items {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .diagnostics,
  .carwash-info,
  .tire-info {
    padding: 60px 0;
  }
  
  .diagnostics-title,
  .carwash-info-title,
  .tire-info-title {
    font-size: 1.8rem;
  }
  
  .diagnostics-item-title,
  .carwash-info-subtitle {
    font-size: 1.2rem;
  }
  
  .tire-info-img-container::before {
    display: none;
  }
}
/* Стилі для блоку "Истории водителей" */
.stories {
  background-color: var(--white);
  padding: 90px 0;
  position: relative;
}

.stories-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 2rem;
  text-align: center;
}

.stories-subtitle {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 400;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.story-card {
  background-color: var(--bg-color);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.story-card:hover {
  transform: translateY(-10px);
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.story-person {
  display: flex;
  flex-direction: column;
}

.story-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
}

.story-location {
  font-size: 0.9rem;
  color: var(--primary-color);
}

.story-rating {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.story-service {
  background-color: rgba(143, 142, 160, 0.1);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 15px;
  display: inline-block;
}

.story-text {
  line-height: 1.7;
  font-style: italic;
  color: var(--dark);
}

.story-quote {
  color: var(--primary-color);
  font-size: 2rem;
  position: absolute;
  top: 10px;
  right: 15px;
  opacity: 0.2;
}

/* Стилі для блоку "Как подготовить авто к зиме/лету" */
.seasonal-prep {
  background-color: var(--bg-color);
  padding: 90px 0;
  position: relative;
}

.seasonal-prep .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.seasonal-prep-content {
  flex: 1.2;
}

.seasonal-prep-img {
  flex: 0.8;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.seasonal-prep-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.seasonal-prep-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.seasonal-prep-text {
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.season-toggle {
  display: flex;
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.season-btn {
  flex: 1;
  padding: 15px;
  text-align: center;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  color: var(--dark);
}

.season-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.season-btn:first-child {
  border-right: 1px solid var(--border-color);
}

.season-btn .material-icons {
  margin-right: 8px;
  vertical-align: middle;
}

/* Стилі для блоку "Самостоятельная проверка машины" */
.self-check {
  background-color: var(--white);
  padding: 90px 0;
  position: relative;
}

.self-check .container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 50px;
}

.self-check-content {
  flex: 1.2;
}

.self-check-img-container {
  flex: 0.8;
  position: relative;
}

.self-check-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.self-check-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(143, 142, 160, 0.2), rgba(72, 71, 80, 0.05));
  border-radius: var(--radius);
  z-index: 3;
}

.self-check-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.self-check-text {
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.check-steps {
  margin-top: 25px;
  counter-reset: step-counter;
}

.check-step {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.check-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.check-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.check-step-text {
  line-height: 1.7;
}

/* Адаптивність для нових блоків */
@media (max-width: 992px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .seasonal-prep .container,
  .self-check .container {
    flex-direction: column;
    gap: 30px;
  }
  
  .seasonal-prep-content,
  .self-check-content,
  .seasonal-prep-img,
  .self-check-img-container {
    flex: 1;
    width: 100%;
  }
  
  .seasonal-prep-title,
  .self-check-title {
    text-align: center;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .stories,
  .seasonal-prep,
  .self-check {
    padding: 60px 0;
  }
  
  .stories-title,
  .seasonal-prep-title,
  .self-check-title {
    font-size: 1.8rem;
  }
  
  .story-card {
    padding: 20px;
  }
  
  .story-name {
    font-size: 1.1rem;
  }
  
  .story-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .story-rating {
    margin-top: 5px;
  }
}

/* Стилі для блоку "Контактная информация" */
.contact-section {
  background-color: var(--bg-color);
  padding: 90px 0;
  position: relative;
}

.contact-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.7;
}

.contact-container {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.contact-info {
  flex: 1;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-map {
  flex: 1.2;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail {
  flex: 1;
}

.contact-label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.contact-value {
  line-height: 1.6;
  color: var(--dark);
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-item {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.hours-day {
  font-weight: 500;
}

/* Стилі для блоку "Форма обратной связи" */
.feedback-section {
  background-color: var(--white);
  padding: 90px 0;
  position: relative;
}

.feedback-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-align: center;
}

.feedback-subtitle {
  font-size: 1.1rem;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.7;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-color);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Наявні стилі для форми */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--accent-color);
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(143, 142, 160, 0.2);
}

.error-message {
  color: #e53935;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-input.error {
  border-color: #e53935;
}

.form-input.error + .error-message {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.form-submit:hover:not([disabled]) {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Адаптивність для нових блоків */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-map {
    height: 350px;
  }
  
  .contact-map iframe {
    height: 350px;
  }
  
  .form-container {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section,
  .feedback-section {
    padding: 60px 0;
  }
  
  .contact-title,
  .feedback-title {
    font-size: 1.8rem;
  }
  
  .contact-info {
    padding: 25px;
  }
  
  .contact-map {
    height: 300px;
  }
  
  .contact-map iframe {
    height: 300px;
  }
  
  .form-container {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .hours-item {
    flex-direction: column;
  }
}