.price-section {
    padding: 100px 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.price-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0,255,255,0.3);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.price-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.price-card img {
    max-width: 180px;
    margin-bottom: 15px;
    border-radius: 8px;
    object-fit: contain;
}

.price-info h2 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.price-info p {
    font-size: 1rem;
    color: #00ffff;
}

.no-services {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 40px;
}

.price-description {
    position: relative;
    margin-top: 20px;
    color: #cccccc;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-desc {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 4px 10px;
    transition: background-color 0.3s ease;
}

.close-desc:hover {
    background-color: rgba(255, 80, 80, 0.3);
}
