/* TOOL LAYOUT */
.bcg-wrapper {
  max-width: 1100px; /* Wide spread for desktop */
  margin: 60px auto;
  padding: 0 20px;
}

.centered-header { text-align: center; margin-bottom: 40px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns on Windows */
  gap: 30px 40px;
}

.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }

.label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}
.label i { color: #C00000; } /* Brand Red */

/* BOX STYLING */
select, input {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  font-family: inherit;
}

.cta button {
  width: 100%;
  margin-top: 30px;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px; /* Rounded pill style from your design */
  border: none;
  background: #C00000;
  color: #fff;
  cursor: pointer;
}

/* RESULTS & POST-SUBMISSION [cite: 2026-02-26] */
.results-container {
  margin-top: 50px;
  display: grid;
  gap: 20px;
}

.card {
  background: #fcfcfc; /* Slightly brighter for contrast */
  border-radius: 12px;
  padding: 25px;
  border-left: 5px solid #C00000;
  text-align: left; /* Explicitly left-aligned */
  border-bottom: 1px solid #eee;
}

.card h3 { 
  color: #C00000; 
  margin: 0 0 10px; 
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
}

.card p {
  color: #444444; /* Dark gray for high readability */
  line-height: 1.6;
  margin: 0;
}

.confirmation {
  margin-top: 20px;
  color: #C00000;
  font-weight: 700;
  text-align: left;
}

/* Styling for the note below the PDF button */
.button-footer-note {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #444444;       /* Dark gray for readability */
  line-height: 1.5;
  max-width: 500px;     /* Prevents text from being too wide */
  
  /* Centering Logic for Windows/Desktop */
  margin-left: auto;    /* Centers the block itself */
  margin-right: auto;   /* Centers the block itself */
  text-align: center;   /* Centers the text inside the block */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .button-footer-note {
    font-size: 0.85rem;
    margin-top: 12px;
    padding: 0 15px;    /* Adds slight padding for smaller screens */
  }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .form-grid { 
    grid-template-columns: 1fr; 
    gap: 25px; 
  }

  .centered-header {
    text-align: left; /* Fixes the H2 and Subtitle alignment on mobile */
  }

  .bcg-wrapper {
    padding: 0 15px;
    margin-top: 30px;
  }

  .cta button {
    padding: 16px;
    font-size: 16px;
  }
}