body {
    /* font-family: 'Roboto Condensed', sans-serif; */
    margin: 0;
    padding: 0;
    background-color: #f1f5f9;
    color: #1f2937;
    line-height: 1.6;
}


.links-section {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.5;
}

.page-title {
    text-align: center;
    margin-bottom: .5rem;
}

.page-title h1 {
    font-size: 2rem;
    /* color: #062e9d; */
    /* position: relative;
    display: inline-block; */
    font-weight: 700; 
     margin: 1rem auto;
    text-align: center;
    color: rgb(251, 255, 252);
    background: linear-gradient(45deg, rgb(62, 216, 96), green);
    /* background-color: rgb(255, 0, 195); */
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: .8rem 2rem;
}
.page-title h2{
    font-size: 1.4rem;
    text-decoration: underline;
    color: #f43f5e;
}


@keyframes pulse {
    0% {
        width: 120px;
        opacity: 1;
    }

    50% {
        width: 160px;
        opacity: 0.7;
    }

    100% {
        width: 120px;
        opacity: 1;
    }
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: .5rem;
}

.link-card {
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    padding: .5rem;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 4px solid;
    border-color: #0d9488 #14b8a6 #14b8a6 #0d9488;
    box-shadow:        3px 3px 6px rgba(0, 0, 0, 0.3),        /* Outer shadow for depth */        -2px -2px 4px rgba(255, 255, 255, 0.5) inset,        /* Inner highlight */        2px 2px 4px rgba(0, 0, 0, 0.2) inset;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.link-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); */
    background-color: #e0f2fe;
    border-color: #f43f5e #f87171 #f87171 #f43f5e; /* Hover: coral shades */
    box-shadow: 
        5px 5px 8px rgba(0, 0, 0, 0.4), /* Stronger outer shadow */
        -3px -3px 5px rgba(255, 255, 255, 0.6) inset, /* Brighter inner highlight */
        3px 3px 5px rgba(0, 0, 0, 0.3) inset; /* Deeper inner shadow */
}

.link-title a {
    font-size: 1.25rem;
    color: #0d9488;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.link-title a:hover {
    color: #f43f5e;
}

.link-title a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: #f43f5e;
    transition: width 0.3s ease;
}

.link-title a:hover::after {
    width: 100%;
}



/* Responsive Design */
@media (max-width: 800px) {
    .page-title h1 {
        font-size: 2rem;
    }
.page-title h2{
    font-size: 1.4rem;
}
    .links-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .link-card {
        padding: .5rem;
    }

    .link-title a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        margin-top: 1rem;
        font-size: 1.6rem;
    }
.page-title h2{
    font-size: 1.3rem;
}
    .links-section {
        margin: 1rem auto;
        padding: 0.5rem;
    }

    .link-card {
        padding: .5rem;
    }

    .link-title a {
        font-size: 1rem;
    }

    .page-title h1::after {
        width: 150px;
    }



    @keyframes pulse {
        0% {
            width: 80px;
            opacity: 1;
        }

        50% {
            width: 120px;
            opacity: 0.7;
        }

        100% {
            width: 80px;
            opacity: 1;
        }
    }
}