/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

/* Layout */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}
/* Navigation */
.main-nav {
    margin: 1rem 0;
}

.main-nav a {
    padding: 0.5rem;
}

/* Content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
  text-align: left;
}

.hero-section {
    margin-bottom: 2rem;
}
.hero-content h1 {
    font-size: 2.5rem;
    color: rgb(134, 64, 174);
    margin: 1rem 0;
}

.hero-content h2 {
    font-size: 2rem;
    color: rgb(134, 64, 174);
    margin: 1rem 0;
}

.hero-content h3 {
    font-size: 1.5rem;
    color: rgb(134, 64, 174);
    margin: 1rem 0;
}
.hero-content .subtitle {
    font-size: 1.25rem;
    font-style: italic;
    color: rgb(134, 64, 174);
    margin: 1rem 0;
}

.features-list {
    text-align: left;
    margin: 2rem 0;
}

.features-list p {
    margin: 1rem 0;
}

/* Text styles */
.large-text {
    font-size: 1.5rem;
}

.medium-text {
    font-size: 1.25rem;
}

.italic {
    font-style: italic;
}

/* Images */
.responsive {
    width: 100%;
    max-width: 790px; /* Reduced from 600px */
    height: auto;
    margin: 0 auto;
    display: block;
}

.image-container {
    margin: 2rem 0;
    text-align: center;
}

.image-container img {
    width: 40%;
    max-width: 300px; /* Added max-width */
    height: auto;
    border: 3px solid black;
}

/* Responsive image adjustments */
@media screen and (max-width: 768px) {
    .responsive {
        max-width: 300px;
    }
    
    .image-container img {
        width: 60%;
        max-width: 250px;
    }
}

@media screen and (max-width: 480px) {
    .responsive {
        max-width: 480px;
    }
    
    .image-container img {
        width: 80%;
        max-width: 480px;
    }
}

/* Highlights */
.highlight-box {
    margin: 1.5rem 0;
    text-align: center;
}

.highlight-yellow {
    background-color: #FFEE58;
}
.highlight-orange {
    background-color: #FFA500;
}
.highlight-black {
    background-color: #000000;
}
.highlight-coffee {
    background-color: #6F4E37;
}
.highlight-white {
    background-color: #FFFFFF;
}
.highlight-lace {
    background-color: #EAE3D2;
}
.highlight-lightpeach {
    background-color: #FFDBB6;
}
.highlight-lighterpeach {
    background-color: #FFE1A8;
}

/* Links */
a:link, a:visited {
    color: #896abc;
}

a:hover {
    color: #7f6abc;
}

a:active {
    color: rgb(134, 64, 174);
}

/* Divider */
.divider {
    height: 3px;
    background-color: rgb(134, 64, 174);
;
    border: none;
    margin: 2rem auto;
    width: 100%;
}

/* Footer */
footer {
    margin-top: 2rem;
    text-align: center;
}

.copyright {
    font-size: 1rem;
    margin-top: 1rem;
}
.invalid-feedback,
.empty-feedback {
  display: none;
}

/* New Form Fields */

.invalid-feedback,
.empty-feedback {
  display: none;
}

.was-validated :placeholder-shown:invalid ~ .empty-feedback {
  display: block;
}

.was-validated :not(:placeholder-shown):invalid ~ .invalid-feedback {
  display: block;
}

.is-invalid,
.was-validated :invalid {
  border-color: #dc3545;
}

/* Increase form container size */
.max-w-xl {
  max-width: 48rem !important; /* Increased from default */
}

/* Increase form padding */
.p-5 {
  padding: 2.5rem !important;
}

/* Make input fields larger and aligned */
.px-3.py-2 {
  padding: 0.75rem 1rem !important;
  font-size: 1.1rem !important;
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* Make textarea larger */
textarea {
  min-height: 200px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Make submit button larger */
button[type="submit"] {
  font-size: 1.2rem !important;
  padding: 1rem 2rem !important;
}

/* Increase spacing between form elements */
.mb-6 {
  margin-bottom: 2rem !important;
}

/* Make form labels larger and aligned */
.text-sm {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
  width: 100% !important;
}

/* Increase heading size */
.text-3xl {
  font-size: 2.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* Increase subheading size */
.text-gray-400 {
  font-size: 1.2rem !important;
  margin-bottom: 2rem !important;
}

/* Increase subheading size */
.text-purple-400 {
  font-size: 1.2rem !important;
  color: rgb(134, 64, 174);
  margin-bottom: 1rem !important;
}

/* Increase subheading size */
.text-purple-600 {
  font-size: 1.2rem !important;
  color: rgb(134, 64, 174);
  margin-bottom: 1rem !important;
}

/* Center the form container */
.wsite-multicol-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

/* Remove unnecessary min-height that was pushing the form down */
.flex.items-center.min-h-screen {
  min-height: auto !important;
}

/* Ensure container takes full width */
.container.mx-auto {
  width: 100% !important;
}

/* Add consistent spacing */
.my-10 {
  margin: 2rem auto !important;
}

/* Align form fields in a row */
.flex.mb-6.space-x-4 {
  display: flex !important;
  gap: 2rem !important;
  width: 100% !important;
}

/* Ensure form field containers are equal width */
.w-full.md\:w-1\/2 {
  flex: 1 !important;
  width: 50% !important;
  color: rgb(134, 64, 174);
}

/* End of New Form Fields */

