/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
}

/* Хедер */
.hero {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('/1.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.connect-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.connect-btn:hover {
  background-color: #e6b800;
}


.cta-btn {
    display: inline-block;
    background-color: #ff9900;
    color: white;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #cc7a00;
}

.hero-image {
    flex: 1 1 100%;
    text-align: center;
}

.hero-image img {
    max-width: 300px;
    width: 100%;
}

/* Преимущества */
.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    background-color: white;
    text-align: center;
}
.job-positions {
            padding: 50px 20px;
            background-color: #f5f9ff;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

.job-positions h2 {
            margin-bottom: 40px;
            color: #2c3e50;
            font-size: 28px;
        }
.positions-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
.position-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            padding: 25px;
            text-align: left;
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            transition: transform 0.3s;
        }

.position-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.12);
        }

.position-head {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

.position-img {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            object-fit: contain;
        }
.position-card h3 {
            margin: 0;
            color: #2c3e50;
            font-size: 1.3rem;
        }
.position-body p {
            color: #555;
            margin-bottom: 15px;
            font-size: 0.95rem;
            min-height: 60px;
        }

.position-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }

.position-features li {
            margin-bottom: 10px;
            color: #666;
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
        }

.position-features li::before {
            content: "•";
            color: #FFCC00;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-right: 8px;
        }

.position-btn {
            background-color: #FFCC00;
            color: #000;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            width: 100%;
            font-size: 1rem;
        }

.position-btn:hover {
            background-color: #ffd633;
            transform: translateY(-2px);
        }

@media (max-width: 768px) {
            .positions-container {
                flex-direction: column;
                align-items: center;
            }
            
.position-card {
                width: 100%;
                max-width: 100%;
            }
            
.benefits h2 {
    width: 100%;
    font-size: 24px;
    margin-bottom: 30px;
}

.benefit-item {
    width: 100%;
    max-width: 300px;
    margin: 15px;
}

.benefit-item img {
    width: 60px;
    margin-bottom: 10px;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 14px;
}

/* Форма */
.form-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.form-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.form-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-section input,
.form-section select,
.form-section button {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    margin: 8px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-section button {
    background-color: #ff9900;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.form-section button:hover {
    background-color: #cc7a00;
}

/* Отзывы */
.reviews {
    background-color: #f1f1f1;
    padding: 40px 20px;
    text-align: center;
}

.reviews h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.review {
    max-width: 500px;
    margin: 15px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.review p {
    font-size: 14px;
    margin-bottom: 10px;
}

.review span {
    font-size: 13px;
    color: #777;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 14px;
    margin-top: 30px;
}
/* Вакансия блок */
.vacancy-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    background-color: #fff;
    max-width: 1200px; /* или любая другая подходящая ширина */
    margin: 0 auto; /* центрирование */
}

.vacancy-text {
    flex: 1 1 55%;
}

.vacancy-text h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.vacancy-text h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.vacancy-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.vacancy-text li {
    margin-bottom: 8px;
}

.vacancy-text p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.vacancy-cards {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vcard {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.vicon {
    font-size: 28px;
    margin-bottom: 10px;
}

.vcard h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.vcard p {
    color: #444;
    font-size: 14px;
}

/* Адаптация */
@media (max-width: 768px) {
    .vacancy-block {
        flex-direction: column;
    }

    .vacancy-text, .vacancy-cards {
        flex: 1 1 100%;
    }

    .vcard {
        padding: 15px;
    }
}
.connect-section {
  text-align: center;
  margin: 40px 0;
}

.connect-btn {
  background-color: #0088cc;
  color: #fff;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.connect-btn:hover {
  background-color: #0077b3;
}
.quick-connect {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.quick-connect h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.quick-connect p {
  margin-bottom: 25px;
  color: #333;
}

.messenger-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.messenger-btn {
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.messenger-btn.telegram {
  background-color: #0088cc;
}

.messenger-btn.telegram:hover {
  background-color: #0077b3;
}

.messenger-btn.whatsapp {
  background-color: #25D366;
}

.messenger-btn.whatsapp:hover {
  background-color: #1ebd5a;
}

@media (max-width: 600px) {
  .messenger-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .messenger-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

