* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #fafafa;
}

html {
    scroll-behavior: smooth;
}

#about,
#Directions,
#contacts {
    scroll-margin-top: 160px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #009688;
    text-align: center;
}

.about {
  background: #fff;
  padding: 72px 64px;
  max-width: 100%;
}

.about p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #3a3a3a;
}

.about p:first-of-type {
  font-size: 17px;
  line-height: 1.65;
  color: #1a1a1a;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 0.5px solid #e0e0e0;
}

.about p + p {
  margin-top: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
}

header {
    border-radius: 0 0 24px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0 !important;
}
header .container {
     padding: 0 16px;
}

.header__inner {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
}

.logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.header__nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.header__nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.header__nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.header__nav a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.directions-section {
  background: #f0f4f8;
  padding: 56px 64px;
  text-align: center;
}

.directions-section .section-title {
  margin-bottom: 40px;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.direction-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.direction-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.direction-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.direction-card__title {
  display: block;
  padding: 16px 20px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #009688;
}
.footer {
    background: #009688;
    color: #ffffff;
    padding: 60px 20px;
    border-radius: 20px 20px 0 0;
    margin-top: 80px;
}

.footer__contacts,
.footer__info {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__contacts {
    margin-bottom: 40px;
}

.footer .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.footer address {
    font-style: normal;
    text-align: center;
    line-height: 1.8;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

.footer__info {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 25px;
    text-align: center;
    line-height: 1.7;
    font-size: .95rem;
}

.footer__info p:first-child {
    margin-bottom: 15px;
}

.faq-item{
    border: 2px solid #009688;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: #fff;
    transition: 0.2s ease;
    margin: 20px;
}
.faq-item summary{
    font-size: 20px;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 24px;
}
.faq-item p{
    font-size: 18px;
}
.faq-item summary::-webkit-details-marker{
    display: none;
}
.FAQ{
    background: #f0f4f8;
    padding: 56px 64px;
    text-align: center;
}
.partners{
    background: #fff;
    padding: 56px 64px;
    text-align: center;
}
.partners-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
    gap: 20px;
    align-items: center;
}
.partner{
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    transition: 0.2s ease;
}

.partner img{
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}