.fake-tile{
    width: 100%;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    min-height: 350px;
    grid-column: 1 / 5;
}

.llqp-arrow{
    position: absolute;
    right: 22vw;
    top: 7vh;
    -webkit-transform: scaleY(-1);
    transform: rotate(-80deg);
}

.llqp-header{
    display:flex;
    justify-content: center;
    align-items: center;
}

.llqp-header h2{
    font-size: 2.6em;
    color: white;
}

.fake-tile h2{
    color: white;
    margin-bottom: 0;
}

#filter-llqp{
    font-size: .9em !important;
    border-radius: .4em !important;
    background-color: #F0F4F4 !important;
    border: 2px solid #F0F4F4 !important;
    height: auto !important;
    padding: .65em .8em !important;
    line-height: 1.4em !important;
    box-shadow: none !important;
}

.course-filter__fields{
    display: flex;
    justify-content: center;
    margin-bottom: 2em;
}

/* Greatway Financial Pricing Form Styles */
.greatway-pricing {
    margin: 0 auto;
    padding: 2rem;
}

.greatway-pricing__form-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.greatway-pricing__form-container--hidden {
    display: none;
}

.greatway-pricing__message {
    margin-bottom: 2rem;
}

.greatway-pricing__message p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

.greatway-pricing__message p:last-child {
    margin-bottom: 0;
}

.greatway-pricing__message strong {
    color: #d32f2f;
    font-weight: 600;
}

.greatway-pricing__field {
    margin-bottom: 1.5rem;
}

.greatway-pricing__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.greatway-pricing__input,
.greatway-pricing__select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.greatway-pricing__input:focus,
.greatway-pricing__select:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.greatway-pricing__select {
    background: white;
    cursor: pointer;
}

.greatway-pricing__error {
    margin: 1rem 0;
    padding: 0.75rem;
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 4px;
    color: #c62828;
    font-weight: 500;
    display: none;
}

.greatway-pricing__error--visible {
    display: block;
}

.greatway-pricing__actions {
    margin-top: 2rem;
    text-align: center;
}

.greatway-pricing__button {
    background: #1976d2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.greatway-pricing__button:hover {
    background: #1565c0;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.greatway-pricing__button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Grid Container Styles */
.greatway-pricing__grid {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.greatway-pricing__grid--visible {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .greatway-pricing {
        padding: 1rem;
    }
    
    .greatway-pricing__form-container {
        padding: 1.5rem;
    }
    
    .greatway-pricing__button {
        width: 100%;
        min-width: auto;
    }
}

/* Success Message Styles (if needed) */
.greatway-pricing__success {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 2rem;
    color: #2e7d32;
}

.greatway-pricing__reset {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
}

.greatway-pricing__reset:hover {
    text-decoration: underline;
}

/* Form validation styling */
.greatway-pricing__input:invalid,
.greatway-pricing__select:invalid {
    border-color: #f44336;
}

.greatway-pricing__input:valid,
.greatway-pricing__select:valid {
    border-color: #4caf50;
}

/* Loading state */
.greatway-pricing__button.loading {
    position: relative;
    color: transparent;
}

.greatway-pricing__button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.contact-tile{
    padding: 1.5em;
}
