
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.category-card {
    font-size: 5px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: saturate(120%) blur(6px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.12);
    border-color: #2660b5;
}

.category-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
}

.view-all-container {
    text-align: center;
}

.view-all-button {
    background-color: var(--brand-orange);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.view-all-button:hover {
    background-color: var(--brand-orange-dark);
}

/* Footer */
.footer {
    background-color: #132e59;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #10b981;
}

.partner-section {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    margin-bottom: 40px;
}

.partner-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.partner-section p {
    color: #d1d5db;
    font-size: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #d1d5db;
    font-size: 20px;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #10b981;
}

.newsletter {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid #374151;
    border-radius: 6px;
    background-color: #374151;
    color: #ffffff;
    font-size: 14px;
    width: 250px;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-button {
    background-color: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-button:hover {
    background-color: #059669;
}

.footer-legal {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-legal p {
    color: #9ca3af;
    font-size: 12px;
    margin-bottom: 8px;
}

/* Modals */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1000; }
.modal[aria-hidden="false"] { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); }
.modal-content { position: relative; background: #ffffff; border-radius: 16px; width: 100%; max-width: 440px; padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.modal-title { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 12px; }
.modal-form { display: grid; gap: 10px; margin-bottom: 12px; }
.modal-close { position: absolute; top: 10px; right: 10px; background: transparent; border: none; font-size: 24px; cursor: pointer; color: #6b7280; }
.modal-close:hover { color: #111827; }

