/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Header styles */
header {
    background-color: white;
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.logo i {
    margin-right: 12px;
    font-size: 2.5rem;
}

header h1 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: black;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    color: #1a3a8f;
}

/* Main content */
main {
    padding: 30px;
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #1a3a8f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.05rem;
}

/* Upload area */
.upload-area {
    margin-bottom: 30px;
}

.upload-box {
    border: 3px dashed #c2d4ff;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    background-color: #f8faff;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.upload-box:hover {
    border-color: #1a3a8f;
    background-color: #f0f5ff;
}

.upload-box i {
    font-size: 3.5rem;
    color: #1a3a8f;
    margin-bottom: 15px;
}

.upload-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a3a8f;
}

.upload-box p {
    color: #666;
    margin-bottom: 5px;
}

.file-types {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px !important;
}

.upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.browse-btn {
    background-color: #1a3a8f;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.browse-btn:hover {
    background-color: #152c6e;
}

.upload-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.upload-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    /* Only keep slideIn for entry */
    animation: slideIn 0.3s ease;
}

.upload-notification.error {
    background-color: #dc3545;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.info-item {
    display: flex;
    align-items: center;
    background-color: #f8faff;
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
}

.info-item i {
    font-size: 1.8rem;
    color: #1a3a8f;
    margin-right: 15px;
}

.info-item h4 {
    margin-bottom: 5px;
    color: #1a3a8f;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Action buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.action-btn {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn i {
    font-size: 1.2rem;
}

.action-btn.secondary {
    background-color: white;
    color: #1a3a8f;
    border: 2px solid #1a3a8f;
}

.action-btn.secondary:hover {
    background-color: #f0f5ff;
    transform: translateY(-2px);
}

.action-btn.small {
    padding: 12px 25px;
    min-width: auto;
    display: inline-flex;
}

.default-btn {
    background-color: white !important;
    color: #1a3a8f !important;
    border: 2px solid #1a3a8f !important;
}

.default-btn:hover {
    background-color: #f0f5ff !important;
    transform: translateY(-2px);
}

.selected-btn {
    background-color: #1a3a8f !important;
    color: white !important;
    border: 2px solid #1a3a8f !important;
}

.selected-btn:hover {
    background-color: #152c6e !important;
    transform: translateY(-2px);
}

/* Upload Button */
.upload-actions {
    display: flex;
    justify-content: center;
}

#uploadBtn {
    background-color: #1a3a8f;
    color: white;
    border: 2px solid #1a3a8f;
}

#uploadBtn:hover {
    background-color: #152c6e;
    transform: translateY(-2px);
}


/* Upload progress */
.upload-progress {
    background-color: #f8faff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #1a3a8f;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-header h4 {
    color: #1a3a8f;
}

#progressPercent {
    font-weight: 700;
    color: #1a3a8f;
}

.progress-bar {
    height: 10px;
    background-color: #e0e7ff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background-color: #1a3a8f;
    width: 0%;
    transition: width 0.3s;
}

.file-name {
    font-size: 0.9rem;
    color: #666;
}

/* Success message */
.upload-success {
    text-align: center;
    padding: 30px;
    background-color: #f0f9f0;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #28a745;
}

.upload-success i {
    font-size: 3.5rem;
    color: #28a745;
    margin-bottom: 15px;
}

.upload-success h3 {
    color: #1a3a8f;
    margin-bottom: 10px;
}

.upload-success p {
    color: #666;
    margin-bottom: 20px;
}

/* Info section - Parent container */
.info-section {
    background-color: #f8faff;
    border-radius: 8px;
    padding: 35px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

/* Individual contact cards */
.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid #1a3a8f;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Contact card headings */
.contact-card h2 {
    color: #1a3a8f;
    margin-bottom: 10px; /* Increased space below name */
    font-size: 1.4rem;
}

.contact-card h3 {
    margin-bottom: 10px; /* Increased space below name */
    font-size: 1.1rem;
}


/* Container for contact details (paragraphs) */
.contact-details {
    /* This div creates the internal spacing group */
}

/* Style for each contact line (Phone, Email, Hours) */
.contact-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px; /* Increased space between lines */
    color: #444;
    line-height: 1.5;
}

/* Style the icons */
.contact-details i {
    color: #1a3a8f;
    width: 20px;
    text-align: center;
}

/* Remove extra margin from the last line */
.contact-details p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #111;
    color: #ddd;
    text-align: center;
    padding: 25px;
}

footer p {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c2d4ff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Utility classes */
.hidden {
    display: none !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        border-radius: 8px;
    }
    
    header {
        padding: 20px 15px;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    header h1 {
        font-size: 1.2rem;
    }
    
    main {
        padding: 20px 15px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .upload-box {
        padding: 30px 15px;
    }
    
    .upload-info {
        flex-direction: column;
    }
    
    .info-item {
        min-width: 100%;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        min-width: 100%;
    }
}
/* ===== SIMPLIFIED TEXT SECTIONS ===== */

/* Base style for both sections */
.text-section {
    max-width: 800px; /* Constrains text width for readability */
    margin: 40px auto; /* Centers the section and adds space */
    padding: 0 20px; /* Padding on sides for mobile */
}

/* Section Headings */
.text-section h2 {
    color: #1a3a8f; /* Your brand blue */
    margin-bottom: 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Paragraphs in both sections */
.text-section p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Requirements List Specific Styles */
.requirements-list {
    margin-top: 20px;
    padding-left: 20px; /* Standard list indent */
}

.requirements-list li {
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 8px;
    font-size: 1.05rem;
}

/* Optional: Style list markers in your brand color */
.requirements-list li::marker {
    color: #1a3a8f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-section {
        margin: 30px auto;
    }
    
    .text-section h2 {
        font-size: 1.6rem;
    }
    
    .text-section p,
    .requirements-list li {
        font-size: 1rem;
    }
}
