*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

:root {
    --base: #f7f7f7;
    --black: #11100e;
    --white: #ffffff;
    --red: #da2b26;
    --blue: #1a3685;
    --font-primary: 'Outfit', sans-serif;
}
body {
    
    font-family: 'Outfit', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

.services {
    margin-top: 80px;
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.section_title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 30px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

.service-card {
    width: 300px;
    background-color: var(--base);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5em;
    color: var(--blue);
    font-weight: bold;
    margin-bottom: 10px;
}

.service-description {
    font-size: 1em;
    color: var(--black);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
        max-width: 400px;
    }
}


.attribution {
    font-size: 0.6em; /* Very small font size */
    color: rgba(0, 0, 0, 0.5); /* Subtle, light gray color */
    position: fixed; /* Fixed at a specific position on the screen */
    bottom: 10px; /* Position 10px from the bottom of the page */
    right: 10px; /* Position 10px from the right of the page */
    z-index: 999; /* Ensure it's above other content but still unobtrusive */
    background-color: transparent; /* No background */
    padding: 5px;
}

.attribution a {
    color: rgba(0, 0, 0, 0.5); /* Link color same as the text */
    text-decoration: none; /* Remove underline */
}

.attribution a:hover {
    color: rgba(0, 0, 0, 0.8); /* Slightly darker when hovered */
}
