body {

    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.support-form-container {
    max-width: 800px;
    margin: 20px auto 40px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #1f2a44;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #101828;
    text-align: center;
}

.form-columns {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-left,
.form-right {
    flex: 1;
}

.mb-3 {
    margin-bottom: 15px;
}

.message-field {
    margin-top: 20px; /* Додано відступ зверху, щоб зберегти позицію */
}

.form-label {
    font-weight: 500;
    font-size: 13px;
    color: #344054;
    display: block;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d0d5dd;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    resize: vertical;
    font-family: inherit;
    color: #1f2a44;
}

.form-control::placeholder {
    color: #98a2b3;
    font-style: normal;
}

.form-control:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.2);
    background-color: #ffffff;
}

.btn-primary {
    background-color: #0066cc;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #0052a3;
    box-shadow: 0 3px 8px rgba(0, 82, 163, 0.3);
    outline: none;
}

.drop-zone {
    border: 1.5px dashed #0066cc;
    border-radius: 8px;
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
    color: #0066cc;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    user-select: none;
}

.drop-zone:hover {
    background-color: #f0f5ff;
}

.drop-zone.dragover {
    background-color: #e6eeff;
    border-color: #0052a3;
    color: #0052a3;
}

.preview-images {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
    gap: 8px;
    justify-content: flex-start;
}

.preview-images img {
    max-width: 60px;
    max-height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #d0d5dd;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.preview-images img:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

#form-message {
    margin-top: 15px;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
    color: #344054;
}

.footer-info {
    margin: 10px auto 0;
    padding: 20px;
    background-color: #f1f5f9;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    color: #1f2a44;
    font-size: 13px;
    line-height: 1.6;
    max-width: 940px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.footer-info-top {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 12px;
}

.footer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-top: 2px;
    animation: fadeInScale 0.8s ease-in-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.footer-highlight {
    margin: 0;
    font-size: 13px;
    color: #1f2a44;
    padding-left: 10px;
    line-height: 1.8;
}

.footer-text {
    text-align: left;
}

.footer-text p {
    margin: 6px 0;
}

.footer-divider {
    margin: 12px 0;
    border-top: 1px solid #e2e8f0;
    height: 1px;
}

.header-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-inline h1 {
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.header-inline img.footer-icon {
    position: absolute;
    right: 0;
}




.complaint-success-message {
    text-align: center;
    padding: 20px;
  }
  .complaint-success-message img {
    margin-bottom: 15px;
  }
  .complaint-success-message h4 {
    color: #28a745;
    margin-bottom: 10px;
  }
  .complaint-success-message p {
    color: #4b4c4c;
    font-size: 0.9rem;
    margin: 0;
  }





  .complaint-success-message p.italic {
    font-style: italic;
    color: #666;
    margin-top: 20px;
  }

  /* Контейнер кнопок у ряд, 3 колонки однакової ширини */
  .btn-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
  }
  .btn-group a {
  text-decoration: none;
  }

.btn-primary-success{
    background-color: #ffffff; 
    color: #374151; 
    border: 1px solid #d1d5db; 
    padding: 6px 14px; 
    border-radius: 6px; 
    font-size: 14px; 
    font-weight: 500; 
 
    align-items: center; 
    gap: 6px; 
    transition: all 0.2s ease;
 
}


.btn-primary-success:hover {
    background-color: #fcfcfc;   /* лёгкий голубой фон */
    border-color: #cccfd4;      /* синий бордер */
              /* синий текст */
  }

  