/* ABOUT SECTION */
#about {
    background-color: #f5f5f5;
    padding: 40px 20px;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-container h2 {
    font-size: 2em;
    color: #003366;
    text-align: center;
    margin-bottom: 30px;
}

.about-container p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.6;
}

/* CATEGORY SECTION - GRID */
.category-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* CATEGORY CARDS */
.category {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* shtyn butonin në fund */
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 550px; /* uniformitet lartësie */
}

.category-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.category h3 {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 15px;
}

.category p {
    font-size: 0.95em;
    line-height: 1.6;
    text-align: justify;
    flex-grow: 1; /* përshkrimi merr hapësirën e mbetur dhe shtyn butonin në fund */
}

.more-info {
    display: inline-block;
    font-size: 0.95em;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #ffeb3b;
    padding: 10px 16px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.more-info:hover {
    color: #0056b3;
    background-color: #ffe033;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    #about {
        padding: 30px 15px;
    }

    .about-container h2 {
        font-size: 1.8em;
    }

    .about-container p {
        font-size: 0.95em;
    }

    .category-section {
        grid-template-columns: 1fr; /* kolona e vetme në mobile */
    }

    .category h3 {
        font-size: 1.2em;
    }

    .category p {
        font-size: 0.9em;
    }

    .more-info {
        font-size: 0.9em;
        padding: 8px 12px;
    }
}
