

.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.footer {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    /* Üst gölge eklendi */
    margin-top: 20px;
}

.footer .quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer .quick-links a {
    text-decoration: none;
    color: #000000;
    margin: 10px 20px;
    transition: color 0.3s ease-in-out;
}

.footer .quick-links a:hover {
    color: #555;
}

.footer .address,
.footer .tags,
.footer .copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.pricing-table {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h2 {
    margin: 0;
    font-size: 24px;
    color: #007BFF;
}

.pricing-card p {
    color: #777;
    margin: 10px 0;
}

.pricing-card .price {
    font-size: 32px;
    color: #333;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card ul li {
    margin: 10px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.pricing-card .btn {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.pricing-card .btn:hover {
    background-color: #0056b3;
}

.pricing-card.disabled {
    background-color: #f0f0f0;
    color: #aaa;
    border: 1px solid #ccc;
    pointer-events: none;
    filter: grayscale(100%);
}

.pricing-card.disabled .btn {
    background-color: #ccc;
    color: #999;
    cursor: not-allowed;
}

.pricing-card.disabled .btn:hover {
    background-color: #ccc;
}

/* Satın Al Butonu */
.btn-buy {
    background-color: #49fcd4;
    /* Arka plan rengi */
    color: black;
    /* Yazı rengi */
    padding: 10px 20px;
    /* İç boşluk */
    text-decoration: none;
    /* Alt çizgiyi kaldır */
    border-radius: 5px;
    /* Köşeleri yuvarla */
    display: inline-block;
    /* Buton gibi görünmesi için */
}

/* Hover durumu: Fareyle üzerine gelince */
.btn-buy:hover {
    background-color: #00FF2C;
    /* Üzerine gelindiğinde arka plan rengi */
    color: #fff;
    /* Yazı rengini beyaz yap */
}

/* Satın Al Butonu */
.btn-buy1 {
    background-color: #49fcd4;
    /* Arka plan rengi */
    color: black;
    /* Yazı rengi */
    padding: 10px 20px;
    /* İç boşluk */
    text-decoration: none;
    /* Alt çizgiyi kaldır */
    border-radius: 5px;
    /* Köşeleri yuvarla */
    display: inline-block;
    /* Buton gibi görünmesi için */
}

/* Hover durumu: Fareyle üzerine gelince */
.btn-buy1:hover {
    background-color: #009fe3;
    /* Üzerine gelindiğinde arka plan rengi */
    color: #fff;
    /* Yazı rengini beyaz yap */
}

/* Satın Al Butonu */
.btn-buy2 {
    background-color: #f3f3f3;
    /* Arka plan rengi */
    color: black;
    /* Yazı rengi */
    padding: 10px 20px;
    /* İç boşluk */
    text-decoration: none;
    /* Alt çizgiyi kaldır */
    border-radius: 5px;
    /* Köşeleri yuvarla */
    display: inline-block;
    /* Buton gibi görünmesi için */
}

/* Hover durumu: Fareyle üzerine gelince */
.btn-buy2:hover {
    background-color: #efeded;
    /* Üzerine gelindiğinde arka plan rengi */
    color: #000000;
    /* Yazı rengini beyaz yap */
}

.ucretsiz {
    display: inline-block;
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.ucretsiz:hover {
    background-color: #0056b3;
}

.teklif {
    display: inline-block;
    padding: 8px 15px;
    background-color: #FFAE00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.teklif:hover {
    background-color: #FFCE00;
}