.cp-wrapper-ecc7e704 {
    padding: 40px;
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
}

.cp-header-ecc7e704 {
    text-align: center;
    margin-bottom: 40px;
}

.cp-heading-ecc7e704 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cp-intro-ecc7e704 {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cp-cards-grid-ecc7e704 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.cp-card-ecc7e704 {
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cp-card-ecc7e704:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cp-card-icon-ecc7e704 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cp-card-icon-ecc7e704 svg {
    width: 36px;
    height: 36px;
}

.cp-card-title-ecc7e704 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cp-card-desc-ecc7e704 {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cp-notice-ecc7e704 {
    padding: 20px 25px;
    background-color: rgba(255, 130, 16, 0.08); /* slight accent tint */
    border-left: 5px solid;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.6;
}

.cp-notice-ecc7e704 p {
    margin: 0;
}

.cp-action-ecc7e704 {
    text-align: center;
}

.cp-btn-ecc7e704 {
    display: inline-block;
    padding: 15px 35px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cp-btn-ecc7e704:hover {
    opacity: 0.9;
    color: #ffffff;
}