/* Main global styles for all pages (fonts, body, navbar, footer, utility classes) */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f9fafb;
    color: #374151;
    margin: 0;
    padding: 0;
}

/* Footer style */

.footer-section {
        background-color: #f9fafb;
        padding: 60px 20px 30px;
        border-top: 1px solid #e5e7eb;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3b82f6;
        margin: 0 0 10px 0;
    }
    
    .footer-logo p {
        color: #6b7280;
        max-width: 300px;
        margin: 0;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 60px;
    }
    
    .link-group h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #374151;
        margin: 0 0 15px 0;
    }
    
    .link-group ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .link-group ul li {
        margin-bottom: 10px;
    }
    
    .link-group ul li a {
        color: #6b7280;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .link-group ul li a:hover {
        color: #3b82f6;
    }
    
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        border-top: 1px solid #e5e7eb;
    }
    
    .copyright p {
        color: #6b7280;
        font-size: 0.9rem;
        margin: 0;
    }
    
    .social-links {
        display: flex;
        gap: 20px;
    }
    
    .social-links a {
        color: #6b7280;
        transition: color 0.3s ease;
    }
    
    .social-links a:hover {
        color: #3b82f6;
    }
    
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
        }
        
        .footer-logo {
            margin-bottom: 30px;
        }
        
        .footer-links {
            gap: 30px;
        }
        
        .footer-bottom {
            flex-direction: column;
        }
        
        .copyright {
            margin-bottom: 20px;
        }
    }

/* Add more global styles as needed, e.g. for .btn, .section, etc. */

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-secondary {
    background-color: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
}

.section {
    padding: 70px 20px;
    border-bottom: 1px solid #e5e7eb;
}

/* Add any other global styles for navbar, footer, utility classes, etc. */
