/* Delete Account Page Styles */

body {
    font-family: 'Catamaran', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    padding-top: 70px;
}

.page-header {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(to right, #5e72e4, #825ee4);
    color: white;
    margin-bottom: 50px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 25px;
}

.card-title {
    color: #5e72e4;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-text {
    color: #525f7f;
    font-size: 1rem;
    margin-bottom: 20px;
}

.img-container {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.img-fluid {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    max-width: 85%;
    height: auto;
}

.img-fluid:hover {
    transform: scale(1.02);
}

.alert-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.alert-title {
    color: #f5365c;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.alert-warning {
    background-color: #fff8e1;
    border-left: 4px solid #f5365c;
    color: #525f7f;
    padding: 20px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #5e72e4;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    font-weight: bold;
}

/* Offerwalls Section Styles */
.section-title {
    text-align: center;
    margin: 50px 0 30px;
}

.section-title h2 {
    color: #5e72e4;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 2rem;
}

.section-title p {
    color: #525f7f;
    font-size: 1.1rem;
}

.feature-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-container {
    margin-bottom: 20px;
}

.icon-container i {
    font-size: 2.5rem;
    color: #5e72e4;
}

.feature-card h3 {
    color: #32325d;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #525f7f;
    font-size: 0.95rem;
}

/* CPI Section Styles */
.cpi-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 50px;
}

.cpi-content {
    padding: 20px;
}

.cpi-content h3 {
    color: #32325d;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cpi-list {
    list-style: none;
    padding-left: 0;
}

.cpi-list li {
    margin-bottom: 15px;
    color: #525f7f;
    font-size: 1rem;
}

.cpi-list i {
    color: #5e72e4;
    margin-right: 10px;
}

.cpi-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Footer Styles */
footer {
    padding: 50px 0;
    text-align: center;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

footer p {
    margin-bottom: 15px;
    color: #525f7f;
}

footer a {
    color: #5e72e4;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #233dd2;
}

@media (max-width: 767px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .img-fluid {
        max-width: 100%;
    }
    
    .cpi-image {
        margin-top: 30px;
    }
    
    .section-title h2 {
        font-size: 1.7rem;
    }
}