﻿.container {
    max-width: 1200px;
    /*margin: 30px auto;
    padding: 0 20px;*/
}

.body-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 46px;
    min-height: 400px;
    margin: 25px 0px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.pt-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 10px;
    padding: 22px 18px;
    border: 1px solid rgba(11, 139, 128, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 180px;
}

    .pt-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #0b8b80, #0b5ed7);
    }

    .pt-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(11, 139, 128, 0.03) 0%, rgba(11, 94, 215, 0.01) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .pt-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        border-color: rgba(11, 139, 128, 0.25);
    }

        .pt-card:hover::after {
            opacity: 1;
        }

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e9f3f2 0%, #d4e8e6 100%);
    color: #a01fdf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(11, 139, 128, 0.15);
    z-index: 1;
}

.pt-card:hover .card-icon {
    background: linear-gradient(135deg, #bd05f3 0%, #660693 100%);
    color: white;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.pt-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    color: black;
    font-weight: 700;
    line-height: 1.3;
    z-index: 1;
}

.pt-card p {
    margin: 0 0 15px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    flex-grow: 1;
    z-index: 1;
}

.card-action {
    margin-top: auto;
    z-index: 1;
}

    .card-action a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: linear-gradient(135deg, #bd05f3 0%, #660693 100%);
        color: white;
        padding: 8px 14px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        font-size: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 3px 8px rgba(11, 139, 128, 0.25);
    }

        .card-action a:hover {
            background: linear-gradient(135deg, #510068 0%, #660693 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(11, 139, 128, 0.35);
        }

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
    position: relative;
    /*padding-bottom: 15px;*/
    text-align-last: center;
}

/*.page-title::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 80px;
                height: 3px;
                background: linear-gradient(to right, #0b8b80, #0b5ed7);
                border-radius: 2px;
            }*/

.page-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.hero-banner {
    background: linear-gradient(135deg, #0b8b80 0%, #0a7269 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,40 50,50 T100,50" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>');
        opacity: 0.5;
    }

    .hero-banner h1 {
        font-size: 32px;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .hero-banner p {
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        opacity: 0.9;
    }
