 html body{
 	background: #f7f7f7;
 }
HEADER {
    background-color: #fff;
}
.main_plans{
	padding:45px 0px;
}
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    
}

.service-details {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.service-title {
font-size: 2.2rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-price {
    text-align: right;
        min-width: 50%;
}

.price-current {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0000;
}

.price-period {
    font-size: 1.2rem;
    color: #888;
    margin-left: 5px;
}

.discount-badge {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 5px;
    display: inline-block;
}

.tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.tab {
    padding: 15px 10px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    min-width: 120px;
}

.tab.active {
    border-bottom-color: #782012;
    color: #782012;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.feature-icon {
    background: linear-gradient(45deg, #782012, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: linear-gradient(45deg, #782012, #764ba2);
    color: white;
}

.comparison-table .current-plan {
    background: #e3f2fd;
    font-weight: bold;
}

.purchase-sidebar {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.purchase-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.plan-selector {
    margin-bottom: 20px;
}

.plan-selector label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.plan-selector select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.plan-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.plan-summary h3 {
    color: #782012;
    margin-bottom: 10px;
}

.price-breakdown {
    margin: 20px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 2px solid #ff0000;
    color: #ff0000;
}

.purchase-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.purchase-button:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    transform: translateY(-2px);
}

.security-info {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

.security-info::before {
    content: "🔒";
    margin-right: 5px;
}

.guarantee {
    background: linear-gradient(45deg, #ffeaa7, #fdcb6e);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}
.payment-section .payment-buttons {
    display: block;
    gap: 20px;
    margin-bottom: 30px;
}
.payment-buttons .payment-btn {
    width: 100%;
    min-height: 60px;
}
.payment-buttons form {
    width: 100%;
    text-align: center;
	margin: 0px 0px 15px;
}
.service-details .tabs {
    padding-top: 15px;
}