/* Prepísané CSS pre izoláciu dizajnu */

.style-wrapper {
  font-family: Arial, sans-serif;
  background: #e3f2fd;
  padding: 20px; /* pridaný padding pre estetiku vnútri wrapperu */
  border-radius: 12px;
}

.style-wrapper .cta-buttons {
  text-align: center;
  margin-top: 30px;
}

.style-wrapper .cta-buttons button {
  background: #2196f3;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  margin: 5px;
  cursor: pointer;
}

.style-wrapper .cta-buttons button:hover {
  background: #1565c0;
}

.style-wrapper .form-wrapper {
  max-width: 520px;
  background: #ffffff;
  padding: 30px;
  margin: 20px auto 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(33,150,243,0.15);
}

.style-wrapper h1 {
  color: #1565c0;
}

.style-wrapper .subtitle {
  color: #334155;
  margin-bottom: 20px;
  font-size: 14px;
}

.style-wrapper label {
  display: block;
  margin-top: 15px;
}

.style-wrapper input, 
.style-wrapper select, 
.style-wrapper textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.style-wrapper input:focus, 
.style-wrapper select:focus, 
.style-wrapper textarea:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33,150,243,0.15);
}

.style-wrapper .submit-btn {
  margin-top: 25px;
  width: 100%;
  background: #2196f3;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.style-wrapper .submit-btn:hover {
  background: #1565c0;
}

.style-wrapper .accordion-header {
  width: 100%;
  text-align: left;
  background: #e3f2fd;
  padding: 12px;
  border: 1px solid #bbdefb;
  border-radius: 6px;
  margin-top: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.style-wrapper .arrow::after { content: "▼"; }
.style-wrapper .accordion-header.active .arrow::after { content: "▲"; }

.style-wrapper .accordion-content {
  overflow: hidden;
  max-height: none;
}
.style-wrapper h1 {
  font-size: 21px; /* nastav si veľkosť podľa potreby */
}
@media (max-width: 768px) {
  .style-wrapper .accordion-content {
    max-height: 0;
    transition: max-height 0.3s ease;
  }
}