/* Base Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #1a1a1a;
}

.highlights {
    max-width: 1400px;
    margin: 50px auto;
    padding: 20px;
    animation: fadeIn 2s ease;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.intro {
    flex: 1;
    min-width: 300px;
}

.intro h1 {
    font-size: 2.8rem;
    color: #002f6c;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.cards {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
}

.card h2 {
    color: #002f6c;
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* Hover Effects */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Simple Fade-In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for mobile */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}


.talc-pic-header{
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/talc-newpic.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}



