.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.points-item {
    background-color: #fff;
    border: 3px solid #0095c7;
    padding: 50px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.points-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.points-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #0095c7;
}

.points-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.points-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

#prices h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0095c7;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

#prices h2::after {
    content: '';
    flex: 1;
    height: 3px;
    background: #00abe2;
    margin-top: 10px;
}

#prices h2::before {
    content: '';
    flex: 1;
    height: 3px;
    background: #00abe2;
    margin-top: 10px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 65px;
}

.prices-item {
    background-color: #fff;
    border: 3px solid #0095c7;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 50px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.prices-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.prices-focus {
    border: 5px solid #0095c7;
    margin-top: 0px;
    margin-bottom: 0px;
}

.prices-item img {
    width: 40%;
    height: auto;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 40px;
    margin-bottom: 40px;
    vertical-align: middle;
}

.prices-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0095c7;
    margin-bottom: 10px;
}

.prices-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0095c7;
}

.prices-item h5 {
    font-size: 4rem;
    font-weight: 700;
    color: #0095c7;
    margin-bottom: 10px;
    border-top: 5px solid #0095c7;
    padding-top: 50px;
}

.prices-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 50px;
}

.prices-item ul li {
    margin-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #0095c7;
    padding-bottom: 10px;
}

.euro-symbol {
    margin-right: 5px;
    font-size: 2.3rem;
}

.prices-info {
    font-size: 14px;
    font-weight: 200;
    color: #5a5a5a;
    margin-top: 50px;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.prices-info a {
    color: #0095c7;
    text-decoration: none;
}

.prices-info a:hover {
    color: #008fb2;
}

@media (max-width: 768px) {
    #prices h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .prices-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .prices-item {
        padding: 30px 20px;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 100%;
    }

    .points-item:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .prices-item:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .prices-focus {
        border: 3px solid #0095c7;
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 149, 199, 0.2);
    }

    .prices-focus:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 149, 199, 0.2);
    }

    .prices-item h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .prices-item h4 {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .prices-item h5 {
        font-size: 3rem;
        padding-top: 30px;
        margin-bottom: 8px;
    }

    .euro-symbol {
        font-size: 2rem;
    }

    .prices-item img {
        width: 35%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .prices-item ul {
        margin-top: 30px;
    }

    .prices-item ul li {
        font-size: 14px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .prices-info {
        font-size: 13px;
        margin-top: 30px;
        padding: 0 10px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    #prices h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .prices-item {
        padding: 25px 15px;
    }

    .points-item:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .prices-item:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .prices-focus:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 149, 199, 0.2);
    }

    .prices-item h3 {
        font-size: 1.3rem;
    }

    .prices-item h4 {
        font-size: 0.85rem;
    }

    .prices-item h5 {
        font-size: 2.5rem;
        padding-top: 25px;
    }

    .euro-symbol {
        font-size: 1.8rem;
    }

    .prices-item img {
        width: 40%;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .prices-item ul {
        margin-top: 25px;
    }

    .prices-item ul li {
        font-size: 13px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .prices-info {
        font-size: 12px;
        margin-top: 25px;
    }
}