/* Custom Styles */
body {
    font-family: 'Public Sans', sans-serif;
    min-height: max(884px, 100dvh);
}

/* Font Awesome base styles */
.fa-solid,
.fa-regular,
.fa-brands,
.fas{
    font-size: 24px;
}

/* Custom component styles */
.hero-section {
    background-image: url("../imgs/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-section-image {
    background-image: url("../imgs/about.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Timeline styles */
.timeline {
    border-left: 2px solid rgba(23, 84, 207, 0.2);
}

.timeline-dot {
    position: absolute;
    left: -41px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 9999px;
    background-color: #1754cf;
    border: 4px solid white;
}

.dark .timeline-dot {
    border-color: #111621;
}

/* FAQ accordion */
.faq-answer {
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Form styles */
.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-input::placeholder {
    color: rgba(191, 219, 254, 1);
}

.form-input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    border-color: transparent;
}

.form-select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-select:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    border-color: transparent;
}

.form-select option {
    color: #1e293b;
}

/* Bottom navigation */
.bottom-nav {
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
}
