/* Global Styles */

body {
    background-color: #f4f7f6;
    font-family: 'Inter', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card Styles */
.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Headings */
h1,
h2,
h3 {
    font-weight: 600;
    color: #2d3748;
}

h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

/* Footer styles */
/* Footer Styles */
footer {
    background-color: #1a202c;
    /* Dark gray background */
    color: white;
    /* White text for contrast */
    text-align: center;
    /* Center align all content */
    padding: 20px 0;
    /* Vertical padding for spacing */
    font-size: 14px;
    /* Smaller font size for footer text */
}

/* Links in the footer */
footer a {
    color: #667eea;
    /* Light purple for links */
    text-decoration: none;
    /* Remove underline by default */
    font-weight: bold;
    /* Bold text for better visibility */
    margin: 0 10px;
    /* Spacing between links */
    transition: color 0.3s ease;
    /* Smooth hover effect */
}

footer a:hover {
    color: #63b3ed;
    /* Lighter blue color on hover */
    text-decoration: underline;
    /* Add underline on hover */
}

/* Footer Spacing for Links */
footer .space-x-4 a {
    margin: 0 8px;
    /* Spacing between links in the horizontal row */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    footer {
        padding: 15px 0;
        /* Adjust padding for smaller screens */
    }

    footer a {
        display: block;
        /* Stack links vertically */
        margin: 10px 0;
        /* Add spacing between links */
    }
}