.pricing-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #2596be;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.recommended {
    border: 3px solid #cc6f3d;
    transform: scale(1.05);
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #cc6f3d;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(204, 111, 61, 0.3);
    z-index: 1;
}

.thumb-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    z-index: 1;
}

.card-header-price {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.package-name {
    font-weight: bold;
    color: #0a1931;
    margin-bottom: 15px;
}

.pricing-card.recommended .package-name {
    color: #cc6f3d;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.features-list li:before {
    content: "✓";
    color: #2596be;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

.pricing-section {
    text-align: center;
    margin-top: auto;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
    margin-bottom: 5px;
}

.discount-badge {
    display: inline-block;
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-button {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    background: #2596be;
    color: white;
    text-decoration: none;
    text-align: center;
  }

  .price-button:hover {
    color: white;
    text-decoration: none;
  }

  .pricing-card.recommended .price-button {
    background: #cc6f3d;
  }

  .price-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
  }

  .renewal-info {
    text-align: center;
    font-size: 13px;
    color: #777;
    font-style: italic;
  }


.custom-section {
    background: linear-gradient(135deg, #0a1931 40%, #2596be 110%);

    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-section h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
}

.custom-section p {    
    margin-bottom: 30px;
    opacity: 0.95;
}

.custom-button {
    background: white;
    color: #0a1931;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    background: #cc6f3d;
    color: white;
}


@media (max-width: 480px) {
    .custom-button {
        padding: 12px 24px;   
        font-size: 15px;      
        width: 100%;          
        max-width: 300px;     
        margin: 0 auto;       
        display: block;       
    }
}


@media (max-width: 768px) {
    .pricing-card.recommended {
        transform: scale(1);
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

  .section-title h2 {
    font-size: 1.45rem !important;
    margin-bottom: 12px !important;
  }

  .section-title .pricing-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    padding: 0 14px !important;
    margin-bottom: 35px !important;
    color: #555 !important;
    text-align: center !important;
  }

}
