.welcome-section {
    margin-bottom: 48px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.action-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e8e8ef;
    transition: transform 0.2s, box-shadow 0.2s;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 54, 79, 0.08);
}

.action-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0f7ff;
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
}

.action-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #39364f;
}

.action-card p {
    color: #6f7287;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.action-btn {
    background: white;
    border: 2px solid #e8e8ef;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #39364f;
    transition: all 0.2s;
}

.action-btn:hover {
    border-color: #f05537;
    color: #f05537;
}

.profile-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8e8ef;
    /* min-width: 280px; */
    /* height: 100%; */
    position: sticky;
    top: 120px;
    margin-top: 167px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.profile-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.profile-name {
    font-weight: 600;
    color: #000000;
}

.profile-links {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #6366f1;
    margin-bottom: 16px;
    font-weight: 500;
}

.profile-stats {
    display: flex;
    gap: 20px;
    /* justify-content: space-between; */
    font-size: 12px;
    color: #000000;
}

.section {
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}

.section-subtitle {
    color: #6f7287;
    font-size: 14px;
    margin-bottom: 0px;
}

.start-btn {
    background: var(--linear-gradient-2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    /* position: absolute;
    right: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.start-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.checklist {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8e8ef;
}

.checklist-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f8f9fa;
}

.checklist-item:last-child{
    padding-bottom: 0 !important;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-icon.pending {
    background: #e8e8ef;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #e8e8ef;
}

.checklist-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #39364f;
    margin-bottom: 4px;
}

.checklist-content p {
    font-size: 12px;
    color: #6f7287;
    line-height: 1.4;
}

.resource-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8e8ef;
    transition: transform 0.2s, box-shadow 0.2s;
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 54, 79, 0.08);
}

.resource-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.resource-icon {
    width: 20px;
    height: 20px;
    color: #f05537;
}

.resource-label {
    font-size: 12px;
    color: #6f7287;
    text-transform: uppercase;
    font-weight: 500;
}

.resource-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #39364f;
    margin-bottom: 16px;
    line-height: 1.4;
}

.read-link {
    color: #6366f1;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
}

.academy-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.academy-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8ef;
    transition: transform 0.2s, box-shadow 0.2s;
}

.academy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 54, 79, 0.08);
}

.academy-image {
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.academy-content {
    padding: 16px;
}

.course-label {
    font-size: 10px;
    color: #6f7287;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
}

.academy-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #39364f;
    margin-bottom: 8px;
    line-height: 1.3;
}

.academy-card p {
    font-size: 12px;
    color: #6f7287;
    line-height: 1.4;
    margin-bottom: 12px;
}

.course-meta {
    font-size: 10px;
    color: #6f7287;
    display: flex;
    justify-content: space-between;
}

.community-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8e8ef;
    display: flex;
    gap: 24px;
    align-items: center;
}

.community-image {
    width: 200px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    flex-shrink: 0;
}

.community-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f05537;
    margin-bottom: 12px;
}

.community-quote {
    font-size: 16px;
    color: #39364f;
    margin-bottom: 8px;
    line-height: 1.5;
}

.community-author {
    font-size: 12px;
    color: #6f7287;
    margin-bottom: 16px;
}

.read-article-btn {
    background: white;
    border: 2px solid #e8e8ef;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    color: #39364f;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.help-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* .help-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e8e8ef;
    transition: transform 0.2s, box-shadow 0.2s;
} */

.help-card:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 25px rgba(57, 54, 79, 0.08); */
}

.help-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0f7ff;
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
}

.help-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #39364f;
}

.help-card input:checked+label {
    border: 2px solid #2162BA;
    background-color: #f3f9ff;
}

.help-card label {
    display: block;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid #e8e8ef;
    transition: transform 0.2s, box-shadow 0.2s;
}

.help-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.navigation-arrows {
    display: flex;
    gap: 8px;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e8e8ef;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6f7287;
}

.nav-arrow:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .main-content {
        margin-left: 0;
        padding: 16px;
    }

    .action-cards {
        grid-template-columns: 1fr;
    }

    .resource-cards,
    .academy-cards,
    .help-cards {
        grid-template-columns: 1fr;
    }

    .community-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-card {
        margin-left: 0;
        margin-top: 24px;
    }

    .start-btn svg{
        display: none;
    }
}