/* Mobile‑first reset */
@font-face {
    font-family: 'Black Dog 20';
    src: url('font/BKANT.TTF') format('truetype');
}
* {
  margin: 0;
  padding: 0;
  font-family: 'Black Dog 20', sans-serif;
  box-sizing: border-box;
}
body {
  /* font-family: Arial, sans-serif; */
  color: #333;
  line-height: 1.5;
  background: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 70px;
  height: auto;
  margin-right: 0.75rem;
}
.site-title h1 {
  font-size: 1.5rem;
  color: #302A72;
}
.site-title p {
  font-size: 0.85rem;
  color: #555;
}
.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 0.5rem;
}
.contact-item i {
  font-size: 12px;
  color: #302A72;
  /* margin-left: 1rem; */
}
.label-with-icon {
  text-decoration: underline;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-item .label {
  display: block;
  font-size: 0.75rem;
  color: #302A72;
  text-transform: uppercase;
  display: inline-block;
}
.contact-item .number {
  display: block;
  font-size: 1rem;
  color: #FF007A;
  font-weight: bold;
  text-decoration: none;
}

/* TITLE BAR */
.title-bar {
  background: #302A72;
  color: #fff;
  text-align: center;
  /* padding: 1.5rem 1rem; */
}
.title-bar h2 {
  font-size: 2.25rem;
}

/* INTRO */
.intro {
  text-align: center;
  margin: 1.5rem auto;
}
.intro p {
  font-size: 24px;
  align-items: center;
}

/* FEEDBACK FORM */
.feedback form {
  display: flex ; 
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-items: center;

}
.options {
  width: 100%;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  /* place-items: center;  */
  margin-top: 15px;
  justify-content: space-between;
 
}
.options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  
}
.options input[type="radio"] {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: #302A72;
}
.button-wrapper {
  display: flex;
  justify-content: center;
}

.btn-submit {
  padding: 0.5rem 3.5rem;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow:  3px 3px 9px  rgba(0, 0, 0, 0.25); 
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s;
  margin-bottom: 33px;
  font-size: 20px;
  color: #5A5859;
  position: relative;
}
.btn-submit:hover {
  background: #f0f0f0;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid #494747;
}
.footer-inner {
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  padding: 0.8rem 0;
}
/* .footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-logo img {
  max-height: 150px;
  height: auto;
}
.footer-logo p {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.2;
} */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem; /* space between image and text */
  margin-bottom: 1rem; /* spacing between multiple logos */
}

.footer-logo img {
  max-height: 150px;
  height: auto;
}

.footer-logo p {
  font-size:18px;
  color: #444;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}





@media (max-width: 760px) {
  .footer-logo img {
    display: flex;
    max-height: 60px !important; /* reduce image height */
    width: auto !important;
  }

  .footer-logo p {
    font-size: 10px !important; /* reduce text size */
    line-height: 1.2 !important;
    margin-right: 0 !important;
  }

  .footer-inner {
    flex-direction: row !important;
    align-items: center !important;
    text-align: center !important;
  }  
  
  
}
@media (max-width: 674px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }
  .contacts {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 10px;
    margin-bottom: 10px;

  }
  .contact-item .number{
    font-size: 0.75rem;
    gap: 1.5rem;
  }
  .logo img{
    max-height: 80px;
  height: auto;
  margin-right: 0.75rem;
}

}
  

@media (min-width: 600px) {
  .options {
    grid-template-columns: repeat(2, 1fr);
  

    
  }
}
/* Desktop: three columns */
@media (min-width: 900px) {
  .options {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Header stacks on small phones */
@media (max-width: 480px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }
  .contacts {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 10px;
    margin-bottom: 10px;

  }
  .contact-item .number{
    font-size: 0.75rem;
    gap: 1.5rem;
  }

  .options label{
    font-size: 0.75rem;
    font-weight: 600;

  }
  .title-bar h2 {
    font-size: 1.75rem;
  }
   .title-bar{
    width: auto;
    overflow: hidden;
   }
   .footer-logo p {
    overflow: hidden;
   }
   .logo img{
    max-height: 70px;
  height: auto;
  margin-right: 0.75rem;

    
   }

   
   
}
@media (max-width: 335px) {
.intro p {
    font-size: 100%;
   }

   .logo img{
    max-height: 60px;
  height: auto;
  margin-right: 0.25rem;

    
   }
  
}
/* @media (max-width: 575px) {
  .intro strong {
    display: block;
    margin-top: 0.5em;
  }
} */
@media (max-width: 575px) {
  .intro strong {
    display: inline-block;
    width: 100%;
  }
}




