/* css/kasko.css */
section {
  background: #007bff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  background: #007bff;
}

.kasko-hero {
  background: #007bff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.kasko-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.kasko-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.kasko-types {
  /* padding: 60px 0; */
  background-color: #007bff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.kasko-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 25px;
  margin: 20px;
}

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

.kasko-card-content h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.kasko-card-content p {
  font-size: 1rem;
  color: #7e7b7b;
  line-height: 1.5;
  margin-bottom: 20px;
}

.kasko-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.kasko-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #555;
}

.kasko-card li img {
  width: 20px;
  height: 20px;
}

.kasko-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kasko-form h3 {
  margin-bottom: 0;
}

.kasko-form input,
.kasko-form button {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
}

.kasko-form input {
  border: 1px solid #ccc;
}

.kasko-form button {
  background-color: #346ee9;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.kasko-form button:hover {
  background-color: #5c7eee;
}

.form-message {
  margin-top: 10px;
  font-weight: bold;
  color: #d9534f;
}

.form-message.success {
  color: #28a745;
}

.seo-text-block {
  /* padding: 60px 0; */
  background-color: #007bff;
}

.seo-text-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
}

.seo-text-block h3 {
  font-size: 1.5rem;
  /* margin-top: 30px; */
  margin-bottom: 15px;
  color: #c7c7c7;
}

.seo-text-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #f7f7f7;
}

.seo-text-block ul {
  list-style: none;
  padding-left: 0;
}

.seo-text-block li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  color: #f7f7f7;
}

.seo-text-block li::before {
  content: '•';
  color: #007bff;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Стилі для FAQ-розділу */
.faq-section {
  /* padding: 40px 0; */
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #007bff;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
}
