*,*::before,*::after{
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
.flex{
    display: flex;
}
.columns{
    flex-direction: column;
}
.space{
    justify-content: space-between;
}
.centerflex{
    justify-content: center;
}
.center{
    text-align: center;
}
.gray{
    color: gray;
}
.w300{
    max-width: 300px;
}
.b300{
    width: 300px;
}
.linkbtn{
    color: #ffffff;
    background-color: #000000;
    text-decoration: none;
    border-radius: 0.7rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    margin-left: 1rem;
    margin-right: 1rem;
}
.overflow{
    overflow: hidden;
}
.team{
width: min(90%, 600px);
}

.shadow{
    height: 1rem;
    width: 100%;
    box-shadow: 0 4px 10px #0000001a;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.container div {
  flex: 1; 
  min-width: 300px;
  padding: 20px;
  box-sizing: border-box;
}

footer{ display: flex; justify-content: space-between; background-color: #222; color: #ffffff; padding: 1rem; }
footer a{ text-decoration: none; color: #ffffff; }

  details {
  width: 80%;
  margin: 0 auto ;
  background: rgba(128, 128, 128, 0.05);
  margin-bottom: .5rem;
  box-shadow: 0 .1rem 1rem -.5rem rgba(0,0,0,.4);
  border-radius: 5px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

summary {
  padding: 1rem;
  display: block;
  background: rgba(128, 128, 128, 0.05);
  padding-left: 2.2rem;
  position: relative;
  cursor: pointer;
  user-select: none;
}

summary:before {
  content: '';
  border-width: .4rem;
  border-style: solid;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  top: 50%; 
  left: 1rem;
  transform: translateY(-50%) rotate(0); 
  transform-origin: .2rem 50%;
  transition: .25s transform ease;
}

details[open] > summary:before {
  transform: rotate(90deg);
}


details summary::-webkit-details-marker {
  display:none;
}

details > p {
  padding-bottom: 1rem;
  margin-bottom: 0;
  margin: 1rem;
}



















/* General Form Styling */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.form-title {
    text-align: center;
    color: #333333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555555;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #000000;
}

/* Optional: Add a small fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-container {
    animation: fadeIn 0.5s ease-out;
}

/* Thank You Message (Hidden by Default) */
.thank-you-message {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
    display: none; /* Hidden until form submits */
}

.thank-you-message h3 {
    color: #4a90e2;
    font-size: 22px;
    margin-bottom: 10px;
}

.thank-you-message p {
    color: #555555;
    font-size: 16px;
}