﻿.page-title {
    text-align: center;
    font-size: 2rem;
    color: #004c6d;
    margin-bottom: 30px;
}

.data-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
   /* justify-content: center;*/
}

.data-box {
    
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: 100%;
    max-width: 600px;
    transition: transform 0.2s;
}

  

    .data-box:hover {
        transform: translateY(-4px);
    }

.section-title {
    color: #1a73e8;
    font-size: 1.5rem;
    margin-bottom: 10px;
    
}

.section-description {
    display: flex;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

    .section-description .text {
        padding-left: 20px;
        text-align: justify;
        flex: 1;
    }

    .section-description .image {
        flex: 0 0 300px;
        background-size: cover;
        background-position: center;
    }

.links-list {
    list-style-type: none;
    padding: 0;
}

    .links-list li {
        margin-bottom: 10px;
        float: left;
        margin-right: 20px;
    }

    .links-list a {
        text-decoration: none;
        color: #0078d4;
        font-weight: 500;
    }

        .links-list a:hover {
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .data-section {
        flex-direction: column;
        align-items: center;
    }

    .data-box {
        width: 90%;
    }
}
