/* Specific styling to remove the card from welcome screen */
#welcome-screen {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    text-align: center;
    margin: 80px auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome-coa {
    width: 150px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

body {
    background-color: #f9f9f9;
}

.container {
    background-color: transparent !important;
}

#welcome-screen h1 {
    color: #006B3F;
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

#welcome-screen h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 500;
}

#welcome-screen p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #333;
}

#open-form-btn {
    background-color: #006B3F;
    font-size: 18px;
    padding: 14px 30px;
    transition: all 0.3s ease;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
}

.welcome-footer {
    margin-top: 40px;
    width: 100%;
    text-align: center;
}

.welcome-footer p {
    font-size: 14px !important;
    color: #666 !important;
    margin-bottom: 2px !important;
}

.welcome-footer strong {
    color: #006B3F;
    font-weight: 700;
}

.footer-links {
    display: inline-block;
    text-align: center;
    margin-top: 0;
    color: #666;
    font-size: 12px;
}

.footer-btn {
    background: none;
    color: #006B3F;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 2px 4px;
    transition: all 0.2s ease;
    text-decoration: underline;
    display: inline-block;
}

.footer-btn:hover {
    color: #005a36;
}

/* About and Privacy Modals */
.about-modal-content,
.privacy-modal-content {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.about-content p,
.privacy-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

.privacy-content h4 {
    color: #006B3F;
    margin: 20px 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.privacy-content h4:first-child {
    margin-top: 0;
}

#open-form-btn:hover {
    background-color: #005a36;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}