* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #f9f9f9;
    color: #333;
}

header {
    background-color: #1976d2;
    color: #fff;
    padding: 15px 20px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 100px;
    width: auto;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu li {
    position: relative;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  display: inline-block;   /* лучше inline-block */
  position: relative;
  line-height: 1.5;        /* добавляем высоту строки */
  white-space: nowrap;
}

/* Линия под пунктом меню */
.menu a::after {
  content: "";
  position: absolute;
  bottom: 0;               /* линия снизу */
  left: 0;
  width: 0;
  height: 2px;
  background: #ffeb3b;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;             /* линия растягивается */
}

.services {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    background: #212121;
    /* kdrop-filter: blur(6px); */
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.services.show {
    max-height: 500px;
    opacity: 1;
}

.services li a {
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    position: relative;
    outline: none;
    text-decoration: none;
}

.slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    flex-direction: row;
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    padding: 10px;
}

button.prev {
    left: 20px;
}

button.next {
    right: 20px;
}

button img {
    width: 32px;
    height: 32px;
}

.breadcrumb {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-block {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 40px;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.info-block p {
    font-size: 18px;
}

.info-block h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #c0392b;
}

.company-name {
    color: #c0392b;
}

.info-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-logo img {
    max-width: 120px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.info-first p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.info-list {
    border: 2px solid #6ab0ff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.info-list ol {
    margin: 0;
    padding-left: 25px;
}

.info-list li {
    font-size: 17px;
    line-height: 1.6;
    color: #e8edf3;
    margin-bottom: 10px;
}

.site-footer {
    background: #1c1f26;
    color: #e8edf3;
    padding: 30px 40px;
    border-top: 2px solid #6ab0ff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contacts li {
    font-size: 16px;
}

.footer-contacts a {
    color: #6ab0ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.footer-address {
    font-style: normal;
    font-size: 16px;
    color: #e8edf3;
}

.footer-copy {
    font-size: 14px;
    color: #aaa;
}

.info-content h2 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #c0392b;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }
}