/** Shopify CDN: Minification failed

Line 288:23 Unexpected "{"

**/
/* Layout spacing */

.disclaimer a,
.media-partners-text a,
.office-address-text a,
.business-inquiries-text a {
  color: #007BFF;
  transition: all 0.3s ease;
}

.disclaimer a:hover,
.media-partners-text a:hover,
.office-address-text a:hover,
.business-inquiries-text a:hover {
  color: #0056b3 ;
}

.content-holder {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0.5rem;
  text-align: left;
}

h1, h2 {
  font-size: 24px;
  color: #000;
  text-align: left;
  margin: 2.5rem 0 1.5rem;
  padding-left: 1rem;
  font-weight: bold;
  max-width: 100%;
}

.dynamic-form {
    max-width: 800px;
    width: 90%;
    margin: 0 auto 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 6px;
}

.form-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }

.form-row-split { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    box-sizing: border-box;
  }
  
.form-column {
    flex: 1;
    min-width: 200px;
    border-radius: 6px; 
}

.disclaimer {
    background-color: rgba(221, 223, 226, 0.26);
    border-left: 4px solid #3273dc;
    padding: 1rem;
    margin: 0.5rem auto;
    width: auto;
    font-size: 14px;
    display: none;
  }
  
  /* Labels */
  label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
  }
  
  .required::after {
    content: "*";
    color: red;
    margin-left: 4px;
  }
  
  .dynamic-form input,
  .dynamic-form select,
  .dynamic-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
  }
  
  .dynamic-form textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .dynamic-form ::placeholder {
    color: #aaa;
  }
  
  .dynamic-form button[type="submit"] {
    background-color: #3273dc;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin: 2px auto;
    transition: background-color 0.3s ease;
  }
  
  .dynamic-form button[type="submit"]:hover {
    background-color: #2366cb;
  }

.find-us {
    box-shadow:  0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 1rem;
    gap: 0.5rem;
  }

.contact-rectangle, 
.partners-rectangle, 
.business-rectangle {
  flex: 1;
  min-width: 250px;
  padding: 1.5rem 1rem;
  background-color: white;
  color: black;
  text-align: center;
  box-sizing: border-box;    
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rectangle-title{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office-address-text,
.media-partners-text,
.business-inquiries-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.faq-container {
  margin: 2rem 0.5rem;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem
}

.faq-box {
  background-color: white;
  border-radius: 6px;
  box-shadow:  0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 1rem;
  width: 14rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: black;
  box-sizing: border-box;
  transition: filter 0.3s ease, box-shadow 0.2s ease;
}

.faq-box:hover{
  filter: drop-shadow(10px 10px 10px rgba(36, 36, 36, 0.2));

}

.faq-icon {
  height: 40px;
  width: 40px;
}

.category-title {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 0px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
   .dynamic-form {
    max-width: 90%;
  }

  .content-holder {
    margin: 0;
  }
  
  h1, h2 {
    font-size: 22px;
  }
  
  .faq-container {
    gap: 0.5rem;
  }
  
  .faq-box {
    width: calc(50% - 0.5rem);
    min-width: 180px;
  }
  
  .find-us {
    gap: 0.5rem;
  }

  .contact-rectangle, 
  .partners-rectangle, 
  .business-rectangle {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .dynamic-form {
    padding: 1.5rem;
}
  
  .find-us {
    gap: 0.5rem;
  }

  .contact-rectangle, 
  .partners-rectangle, 
  .business-rectangle {
    min-width: 200px;
  }
  
  .faq-box {
    min-width: 160px;
    width: calc(33.333% - 0.5rem);
  }

  .faq-container {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .form-row-split {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  h1, h2 {
    font-size: 20px;
    margin: 1.5rem 0 1rem;
    padding-left: 0.5rem;
  }
  
  .find-us {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    max-width: 500px;
  }
  
  .contact-rectangle, 
  .partners-rectangle, {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
  }

  .business-rectangle {
    flex: 1 1 100%;
    min-width: 140px;
  }

  .faq-container {
    gap: 0.5rem;
    margin: 2rem 0.75rem;
  }
  
  .faq-box {
    width: calc(50% - 0.25rem);
    min-width: 140px;
    padding: 1rem 0.5rem;
  }
  
  .dynamic-form {
    padding: 1rem;
  }
  
  button[type="submit"] {
    padding: 10px 20px;
    font-size: 14px;
  }
}