.elementor-84 .elementor-element.elementor-element-ee72f45{--display:flex;}/* Start custom CSS for container, class: .elementor-element-ee72f45 *//* Core Reset and Base Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #f7f9fa, #e1f2f2);
    color: #1e1e1e;
    margin: 0;
    padding: 0;
}

section.plans {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: #ffe58f;
    color: #aa7e00;
    padding: 5px 15px;
    border-radius: 999px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin: 15px 0 10px;
}

.section-description {
    font-size: 16px;
    color: #444;
}

/* Grid Layout for Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Plan Card */
.plan-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.plan-subtitle {
    font-size: 14px;
    color: #888;
    margin: 5px 0;
}

.plan-price {
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
    color: #ff9500;
}

.plan-price .price-period {
    display: block;
    font-size: 14px;
    color: #999;
}

/* Features List */
.plan-features h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: #222;
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
    color: #444;
}

.feature-icon {
    font-size: 16px;
    margin-right: 10px;
    color: #ffc107;
}

/* Plan Specs */
.plan-specs {
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
    font-size: 14px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    color: #333;
}

/* Buttons */
.plan-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.plan-btn {
    flex: 1 1 48%;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

.plan-btn.primary {
    background-color: #ffb300;
    color: #fff;
}

.plan-btn.primary:hover {
    background-color: #ffa000;
}

.plan-btn.secondary {
    background-color: #fff;
    color: #ffb300;
    border: 2px solid #ffb300;
}

.plan-btn.secondary:hover {
    background-color: #fff3cd;
}

/* Footer Section */
.plans-footer {
    margin-top: 60px;
    text-align: center;
}

.payment-options h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.payment-option {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-3px);
}

.payment-icon {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffb300;
}

.payment-option h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}/* End custom CSS */