/* Manage Subscription Page Styles */
.manage-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.manage-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

.manage-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.15);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-header img {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    padding: 12px;
    border-radius: 10px;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.info-card p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.info-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.info-card li {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-box:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
}

.faq-box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-box-top h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    flex: 1;
}

.morebtn {
    background-color: var(--primary-color);
    padding: 4px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    border-radius: 50%;
    flex-shrink: 0;
}

.line-1 {
    width: 70%;
    background: #fff;
    height: 4px;
    margin: 5px auto;
    border-radius: 8px;
    transform: translate(0, 7px);
}

.line-2 {
    width: 70%;
    background: #fff;
    height: 4px;
    margin: 6px auto;
    border-radius: 8px;
    transform: translate(0px, -3px) rotate(90deg);
    transition: all ease-in 0.3s;
}

.line-2.active {
    transform: rotate(0deg);
    opacity: 0;
}

.ansfaq {
    max-height: 0;
    width: 100%;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.ansfaq.active {
    max-height: 500px;
    padding: 15px 0 0;
    border-top: 1px solid rgba(79, 70, 229, 0.2);
    transition: all 0.3s ease-in-out;
}

.ansfaq p, .ansfaq li {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.ansfaq ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .info-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .manage-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .manage-hero h1 {
        font-size: 2rem;
    }

    .info-card,
    .faq-item {
        padding: 1.5rem;
    }
}
