									/*  		Защита прав потребителей		  */
.dredd-protect-section {
  background-color: #f9fafa;
  padding: 4rem 2rem;
 position: relative;
  color: #1a1a1a;
}

.dredd-protect-container {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.dredd-section-title {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  color: #3a3a3a;
  margin-bottom: 2rem;
}

.dredd-protect-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #333;
}

.dredd-protect-contact {
  background-color: #fffbe8;
  padding: 1.5rem 2rem;
  border-left: 4px solid #aa3e3e;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.dredd-protect-contact p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.dredd-documents-list {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
}

.dredd-documents-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.dredd-documents-list a {
  color: #aa3e3e;
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dredd-documents-list a:hover {
  color: #c44a4a;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .dredd-protect-container {
    padding: 2rem;
  }

  .dredd-documents-list li {
    font-size: 0.95rem;
  }
}
.dredd-form-placeholder {
  padding: 2rem;
  border: 2px dashed #c4c4c4;
  border-radius: 12px;
  background-color: #fcfcfc;
  text-align: center;
  color: #777;
}

.dredd-form-placeholder h3 {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 0.5rem;
}

/*		ФОРМА	*/
.dredd-form-wrapper {
  margin: auto;
}

.dredd-main-title {
  text-align: center;
  color: #800000;
  font-size: 24px;
  margin-bottom: 5px;
}

.dredd-subtitle {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin-bottom: 25px;
}


.dredd-fieldset {
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}
.hidden, .dredd-hidden {
  display: none !important;
}
legend {
  font-weight: bold;
  padding: 0 10px;
  color: #800000;
}

.dredd-form-group {
  margin-bottom: 15px;
}

.dredd-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
.dredd-form-group select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.dredd-submit-button {
  background-color: #a00000;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.dredd-submit-button:hover {
  background-color: #800000;
}

.hidden {
  display: none !important;
}

.dredd-file-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dredd-file-label {
  display: block;
  background-color: #ffe5e5;
  border: 1px dashed #cc0000;
  color: #800000;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.dredd-file-label:hover {
  background-color: #ffd4d4;
}

.dredd-file-wrapper input[type="file"] {
  display: none;
}