/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f5f5f5;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

/* Grid for Links */
.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Link Item */
.link-item {
    background: #eaf6ff;
    color: #003459;
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: #d9ecff;
}

/* Icon Styles */
.icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #006992;
}

/* Specific Icon Colors */
.link-item:nth-child(1) .icon {
    color: #FF6347;
}

.link-item:nth-child(2) .icon {
    color: #32CD32;
}

.link-item:nth-child(5) .icon {
    color: #FF8C00;
}

/* Link Text */
.link-text {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}
